From c7b16860b937a0f5b7055ed53c7c4d228e3b275d Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 22 Feb 2016 02:05:44 +0100 Subject: [PATCH] Server: Fix bug in thingproliferation(). --- server/world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/world.py b/server/world.py index e50774c..c187159 100644 --- a/server/world.py +++ b/server/world.py @@ -19,7 +19,7 @@ def thingproliferation(t, prol_map): for dir in [directions_db[key] for key in sorted(directions_db.keys())]: mv_result = mv_yx_in_dir_legal(dir, t["T_POSY"], t["T_POSX"]) c = prol_map[mv_result[1] + world_db["MAP_LENGTH"] + mv_result[2]] - if mv_result[0] and c in symbols_passable: + if mv_result[0] and str(c) in symbols_passable: candidates.append((mv_result[1], mv_result[2])) if len(candidates): i = rand.next() % len(candidates) -- 2.30.2