X-Git-Url: https://plomlompom.com/repos/?p=plomrogue2-experiments;a=blobdiff_plain;f=new%2Fplomrogue%2Fcommands.py;h=bd740b7404999e7d894da1ff8b1ce14e6f86204f;hp=2d9ecb6e1a2088aef39cb4449f00bc6c9446cfad;hb=adbbe8b5526c6d9ae05ca646a5d6da2f347d93c8;hpb=bc8966e5d8af45c551f7b2b42503b08609887475 diff --git a/new/plomrogue/commands.py b/new/plomrogue/commands.py index 2d9ecb6..bd740b7 100644 --- a/new/plomrogue/commands.py +++ b/new/plomrogue/commands.py @@ -20,7 +20,7 @@ cmd_MAP_SIZE.argtypes = 'yx_tuple:pos' def cmd_MAP(game, map_pos): """Ensure (possibly empty/'?'-filled) map at position map_pos.""" - game.world.ensure_map(map_pos) + game.world.get_map(map_pos) cmd_MAP.argtypes = 'yx_tuple' def cmd_THING_TYPE(game, i, type_):