1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-13 10:50:35 +00:00

display yasc message in gameover

This commit is contained in:
Zeno Rogue 2024-02-24 03:00:42 +01:00
parent 5aac5fd2a3
commit 2379228ab4

View File

@ -639,7 +639,8 @@ EX void handleKeyQuit(int sym, int uni) {
popScreen();
msgs.clear();
if(!canmove) {
addMessage(XLAT("GAME OVER"));
if(yasc_message != "") addMessage(XLAT("GAME OVER") + ": " + yasc_message);
else addMessage(XLAT("GAME OVER"));
addMessage(timeline());
}
}