X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=909d5bea68de4d2a50d669066343b79662847d02;hb=253f4ce3544c6e9982ba5296c4b28f5fc1888db5;hp=8376355fdfacdc4d46c5ad546b868c02feb0f6cc;hpb=12722b177b33b81ed300ef4128948a931d5aa93a;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 8376355..909d5be 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -448,7 +448,7 @@ cmd_THING_CRATE_ITEM.argtypes = 'int:pos int:pos' def cmd_MAP_CONTROL_PRESETS(game, draw_control_presets): game.draw_control_presets = draw_control_presets -cmd_MAP_CONTROL_PRESETS.argtypes = 'bool' +cmd_MAP_CONTROL_PRESETS.argtypes = 'int:nonneg' def cmd_THING_SPAWNPOINT_CREATED(game, spawnpoint_id, timestamp): import datetime @@ -463,3 +463,7 @@ def cmd_THING_SPAWNPOINT_CREATED(game, spawnpoint_id, timestamp): spawnpoint.temporary = True spawnpoint.created_at = datetime.datetime.fromtimestamp(timestamp) cmd_THING_SPAWNPOINT_CREATED.argtypes = 'int:pos int:nonneg' + +def cmd_INTRO_MSG(game, msg): + game.intro_messages += [msg] +cmd_INTRO_MSG.argtypes = 'string'