X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=inline;f=server%2Fworld.py;h=c18715962c801022a91b904e1a6eaa010d9c7ae3;hb=c7b16860b937a0f5b7055ed53c7c4d228e3b275d;hp=e50774ca716158e4ce42415a25485f82ec461347;hpb=8ab4874e22de6584f9b309bbd3d7e2e7b613a0db;p=plomrogue 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)