From: Christian Heller Date: Wed, 18 Nov 2020 02:54:26 +0000 (+0100) Subject: Fix curses client broken by mapping code changes. X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=commitdiff_plain;h=7066b2cb74b16d17264c0fa9b9db8909f2851c45;p=plomrogue2 Fix curses client broken by mapping code changes. --- diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index 18977d2..8c629a5 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -424,7 +424,7 @@ class TUI: self.window_width) def move_explorer(direction): - target = self.game.map_geometry.move(self.explorer, direction) + target = self.game.map_geometry.move_yx(self.explorer, direction) if target: self.explorer = target self.query_info()