home · contact · privacy
TCE: Only create exit between six holes.
[plomrogue] / plugins / server / TheCrawlingEater.py
index 11955305a180a4840039d2ecbdba52b393914c85..850094ddb1c53608fa0e8630bffe8a8dc3b41110 100644 (file)
@@ -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