From 0562fc4b6341d5ffef47d34b3448577af5866ebb Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 22 May 2021 02:08:52 +0200 Subject: [PATCH] Curse of Fatigue now can be used to fool Ratlings --- monstermove.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monstermove.cpp b/monstermove.cpp index b9113d85..b02c2c51 100644 --- a/monstermove.cpp +++ b/monstermove.cpp @@ -453,7 +453,7 @@ EX int moveval(cell *c1, cell *c2, int d, flagtype mf) { if(wantsToStay(m)) return 750; - if((m == moRatling || m == moRatlingAvenger) && lastmovetype == lmSkip) return 650; + if((m == moRatling || m == moRatlingAvenger) && lastmovetype == lmSkip && !items[itFatigue]) return 650; if(m == moLancer) { bool lancerok = true;