X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=49312eeff129006a7755bee3ed4645088eaacf5e;hb=3e0f898a8bc308e6b7d06573a90c197eff8d82f3;hp=50445e7f9c62f557b098d7e4781723679c11c74d;hpb=1ff4078be77dba8b4c4a5213490233a7642c2b6e;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 50445e7..49312ee 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -28,6 +28,12 @@ def cmd_TERRAIN(game, character, description, blocks_sound, blocks_movement) cmd_TERRAIN.argtypes = 'char string bool bool bool' +def cmd_TERRAIN_TAG(game, character, tag): + if not character in game.terrains: + raise GameError('terrain does not exist: %s' % character) + game.terrains[character].tags.add(tag) +cmd_TERRAIN_TAG.argtypes = 'char string' + def cmd_ALL(game, msg, connection_id): speaker = game.get_player(connection_id) if not speaker: