X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_free?a=blobdiff_plain;f=server%2Fworld.py;h=c18715962c801022a91b904e1a6eaa010d9c7ae3;hb=fea55ff542837ce42421aa6664939f21ebec2479;hp=480ea28f424c30335434803f97993cd8c8639602;hpb=2d78939fd39c64a41742a73558708628e38e282d;p=plomrogue diff --git a/server/world.py b/server/world.py index 480ea28..c187159 100644 --- a/server/world.py +++ b/server/world.py @@ -11,16 +11,15 @@ def thingproliferation(t, prol_map): marked "." in prol_map. If there are several map cell candidates, one is selected randomly. """ - from server.config.world_data import directions_db + from server.config.world_data import directions_db, symbols_passable from server.utils import mv_yx_in_dir_legal prolscore = world_db["ThingTypes"][t["T_TYPE"]]["TT_PROLIFERATE"] if prolscore and (1 == prolscore or 1 == (rand.next() % prolscore)): candidates = [] 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"]) - if mv_result[0] and ord(".") == prol_map[mv_result[1] - * world_db["MAP_LENGTH"] - + mv_result[2]]: + c = prol_map[mv_result[1] + world_db["MAP_LENGTH"] + mv_result[2]] + 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)