X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/day?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=f2e479e17cc0bfbecac54c8f485f9e1d8ddfcb3f;hb=089f09f75ae957e2483da10f0dbeac299217688c;hp=dea4b63d4c4c69e0d42b8abc90a7c345c2945312;hpb=018bb0242ebd2b7e9fde170fae830376dea55e16;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index dea4b63..f2e479e 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -36,6 +36,7 @@ def cmd_SPAWN_POINT(game, big_yx, little_yx): cmd_SPAWN_POINT.argtypes = 'yx_tuple yx_tuple:nonneg' def cmd_LOGIN(game, nick, connection_id): + # TODO filter newlines for t in [t for t in game.things if t.type_ == 'Player' and t.name == nick]: raise GameError('name already in use') if game.get_player(connection_id): @@ -96,7 +97,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 +109,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): @@ -312,5 +313,5 @@ def cmd_THING_BOTTLE_EMPTY(game, thing_id): raise GameError('thing of ID %s not found' % thing_id) if not t.type_ == 'Bottle': raise GameError('thing of ID %s not bottle' % thing_id) - t.full = False + t.empty() cmd_THING_BOTTLE_EMPTY.argtypes = 'int:pos'