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

fixed missing translatability for the Hardcore messages

This commit is contained in:
Zeno Rogue 2021-05-27 13:00:50 +02:00
parent 6a6ed4ea0d
commit 77ae9d22c3

View File

@ -398,9 +398,9 @@ EX void switchHardcore() {
else if(hardcore && canmove) { hardcore = false; }
else { hardcore = true; canmove = true; hardcoreAt = turncount; }
if(hardcore)
addMessage("One wrong move, and it is game over!");
addMessage(XLAT("One wrong move, and it is game over!"));
else
addMessage("Not so hardcore?");
addMessage(XLAT("Not so hardcore?"));
if(pureHardcore()) popScreenAll();
}