1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 10:19:58 +00:00

Curse of Fatigue now can be used to fool Ratlings

This commit is contained in:
Zeno Rogue 2021-05-22 02:08:52 +02:00
parent bb47ad99e6
commit 0562fc4b63

View File

@ -453,7 +453,7 @@ EX int moveval(cell *c1, cell *c2, int d, flagtype mf) {
if(wantsToStay(m)) return 750; 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) { if(m == moLancer) {
bool lancerok = true; bool lancerok = true;