X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance2?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=dc2e6ead099deb9c2a873f93e3309bd327d7d464;hb=0ec2f3df7ef3b2f7bdbe7c45278e0944e64a56fe;hp=7a05ae8fa07bd0a9e8150ef53bc4c645bc509556;hpb=d23e0cac52c9ccc215c7c2d8e62ea29c6f7620bf;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 7a05ae8..dc2e6ea 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -96,7 +96,7 @@ def cmd_THING_PROTECTION(game, thing_id, protection_char, connection_id): if not t: raise GameError('thing of ID %s not found' % thing_id) t.protection = protection_char - game.changed = True + #game.changed = True cmd_THING_PROTECTION.argtypes = 'int:pos char' def cmd_SET_MAP_CONTROL_PASSWORD(game, tile_class, password, connection_id): @@ -108,7 +108,7 @@ def cmd_SET_MAP_CONTROL_PASSWORD(game, tile_class, password, connection_id): if tile_class == '.': raise GameError('tile class "." must remain unprotected') game.map_control_passwords[tile_class] = password - game.changed = True + #game.changed = True cmd_SET_MAP_CONTROL_PASSWORD.argtypes = 'char string' def cmd_NICK(game, nick, connection_id):