X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server_%2Fgame.py;fp=server_%2Fgame.py;h=60c0f4726950d0756dc6a8a255e1583fb2c41559;hb=9c3865bbfc4fe7721f8c2f057bce85e2300ea528;hp=5e38daae0a6a05eebf7610e1c5775c999b4b3e9c;hpb=b7d8d49aaca0cdfd7be583c5da44aa37e9ad693c;p=plomrogue2-experiments diff --git a/server_/game.py b/server_/game.py index 5e38daa..60c0f47 100644 --- a/server_/game.py +++ b/server_/game.py @@ -111,6 +111,7 @@ class World(game_common.World): def __init__(self): super().__init__() self.Thing = Thing # use local Thing class instead of game_common's + self.Map = Map # use local Map class instead of game_common's self.map_ = Map() # use extended child class self.player_id = 0 @@ -276,7 +277,7 @@ class Game(game_common.CommonCommandsMixin): return 'Y:' + str(tuple_[0]) + ',X:' + str(tuple_[1]) self.io.send('NEW_TURN ' + str(self.world.turn)) - self.io.send('MAP_SIZE ' + stringify_yx(self.world.map_.size)) + self.io.send('MAP ' + stringify_yx(self.world.map_.size)) visible_map = self.world.get_player().get_visible_map() for y, line in visible_map.lines(): self.io.send('VISIBLE_MAP_LINE %5s %s' % (y, self.io.quote(line)))