1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-18 20:08:06 +00:00

an option to have 'quest status' and 'main menu' on separate screens

This commit is contained in:
Zeno Rogue
2025-12-12 00:02:31 +01:00
parent f20ea8bac8
commit 3328981004
9 changed files with 57 additions and 28 deletions

View File

@@ -1645,7 +1645,7 @@ EX eItem targetRangedOrb(orbAction a) {
useupOrb(itOrbMorph, 3);
if(orig == moPlayer) {
achievement_final(true);
showMissionScreen();
showMissionScreen(true);
}
return itOrbMorph;
}
@@ -2874,7 +2874,7 @@ EX void turn(int delta) {
}
lastdead = pc[i]->dead;
if(lastcanmove && pc[i]->dead) showMissionScreen();
if(lastcanmove && pc[i]->dead) showMissionScreen(true);
canmove = canmove && !pc[i]->dead;
}