X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/calendar?a=blobdiff_plain;f=new%2Fplomrogue%2Fthings.py;h=9bc84907bb757fe0251b47ca7808f1d64cebe4a2;hb=76d1e8d03aea96af9339c0021922ac314c0c2a5c;hp=5ef429754c41373dbf9a9b986de63ef88e684303;hpb=599f48bd1d9270cf154e885cf276adb05727507a;p=plomrogue2-experiments diff --git a/new/plomrogue/things.py b/new/plomrogue/things.py index 5ef4297..9bc8490 100644 --- a/new/plomrogue/things.py +++ b/new/plomrogue/things.py @@ -63,7 +63,7 @@ class ThingAnimate(Thing): neighbors = dijkstra_map.get_neighbors(tuple(self.position)) n = n_max target_direction = None - for direction in neighbors: + for direction in sorted(neighbors.keys()): yx = neighbors[direction] if yx is not None: n_new = dijkstra_map[yx]