no more fatigue_cost checking when the Curse is gone

This commit is contained in:
Zeno Rogue 2021-08-08 17:24:09 +02:00
parent e55fe37803
commit 2f11237171
1 changed files with 1 additions and 1 deletions

View File

@ -903,7 +903,7 @@ bool pcmove::after_escape() {
tell_why_impassable();
return false;
}
else if(items[itFatigue] + fatigue_cost(mi) > 10) {
else if(markOrb(itCurseFatigue) && items[itFatigue] + fatigue_cost(mi) > 10) {
if(vmsg(miRESTRICTED))
addMessage(XLAT("You are too fatigued!"));
return false;