pythonfoo / fantasy_forge

Fantasy Forge is a framework for creating and playing text adventure games.
6 stars 1 forks source link

Check for format string argument mismatches? #17

Open inktrap opened 3 weeks ago

inktrap commented 3 weeks ago

Wrong message when item used with wrong object. E.g. in cave:

> use tv with door
You need a key. {'name': 'door'}

Looks like we are handing over an argument to the format string that is not interpreted by the format string. Can we check for this kind of error in general as it would be tedious/non-practical to test all combinations of stuff you are not supposed to do