From: Christian Heller Date: Sun, 13 Mar 2016 20:20:38 +0000 (+0100) Subject: TCE: Only create exit between six holes. X-Git-Tag: tce~6 X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=6bc66917f98e63e20b5718b32dbd5e40180d3b1f TCE: Only create exit between six holes. --- diff --git a/plugins/server/TheCrawlingEater.py b/plugins/server/TheCrawlingEater.py index 1195530..850094d 100644 --- a/plugins/server/TheCrawlingEater.py +++ b/plugins/server/TheCrawlingEater.py @@ -482,7 +482,7 @@ def turn_over(): dirs = "edcxsw" for i in range(len(dirs)): score += libpr.get_neighbor_score(i) - if score == 5 or score == 6: + if score == 6: world_db["MAP"][pos] = ord("&") libpr.free_score_map() world_db["TURN"] += 1