X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plugins%2Fserver%2FTheCrawlingEater.py;fp=plugins%2Fserver%2FTheCrawlingEater.py;h=78d90b65ca5a241d998d73383be1b4ca2794782c;hb=3247a076c85a8c350072e9e11b21d29d3cde4c59;hp=2a7dbefb82839901d4206f43203bbc420a870266;hpb=f756812362c751ccaca1e001ab76e414e4157df3;p=plomrogue diff --git a/plugins/server/TheCrawlingEater.py b/plugins/server/TheCrawlingEater.py index 2a7dbef..78d90b6 100644 --- a/plugins/server/TheCrawlingEater.py +++ b/plugins/server/TheCrawlingEater.py @@ -223,7 +223,7 @@ def actor_move(t): def test_hole(t): - if world_db["MAP"][t["pos"]] == ord("&"): + if world_db["GRACE"] >= 32 and world_db["MAP"][t["pos"]] == ord("&"): world_db["die"](t, "YOU WIN, CONGRATULATIONS.") return False if chr(world_db["MAP"][t["pos"]]) in "*&":