mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-04 14:30:35 +00:00
no more fatigue_cost checking when the Curse is gone
This commit is contained in:
parent
e55fe37803
commit
2f11237171
@ -903,7 +903,7 @@ bool pcmove::after_escape() {
|
|||||||
tell_why_impassable();
|
tell_why_impassable();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else if(items[itFatigue] + fatigue_cost(mi) > 10) {
|
else if(markOrb(itCurseFatigue) && items[itFatigue] + fatigue_cost(mi) > 10) {
|
||||||
if(vmsg(miRESTRICTED))
|
if(vmsg(miRESTRICTED))
|
||||||
addMessage(XLAT("You are too fatigued!"));
|
addMessage(XLAT("You are too fatigued!"));
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user