1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

changes: you no longer immediately die in LoEM

This commit is contained in:
Zeno Rogue 2020-03-16 21:40:27 +01:00
parent abf1b81a45
commit bd065c3e90

View File

@ -174,7 +174,7 @@ EX bool checkNeedMove(bool checkonly, bool attacking) {
addMessage(XLAT("Your Aether power has expired! RUN!"));
}
else return false;
if(hardcore)
if(hardcore && !checkonly)
killHardcorePlayer(multi::cpid, flags);
return true;
}