mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-20 15:40:26 +00:00
improved welcome messages: Heptagonal Mode, (cheat mode on), Halloween only if eligible for achievement
This commit is contained in:
parent
f6ce7c9039
commit
35551f9dc9
10
system.cpp
10
system.cpp
@ -64,14 +64,18 @@ void welcomeMessage() {
|
||||
else if(shmup::on) ; // welcome message given elsewhere
|
||||
else if(euclid)
|
||||
addMessage(XLAT("Welcome to the Euclidean mode!"));
|
||||
else if(sphere && specialland == laHalloween)
|
||||
else if(specialland == laHalloween && BITRUNCATED && among(geometry, gSphere, gElliptic))
|
||||
addMessage(XLAT("Welcome to Halloween!"));
|
||||
else if(elliptic)
|
||||
addMessage(XLAT("Good luck in the elliptic plane!"));
|
||||
else if(sphere)
|
||||
addMessage(XLAT("Welcome to Spherogue!"));
|
||||
else
|
||||
addMessage(XLAT("Welcome to HyperRogue!"));
|
||||
else if(PURE && geometry == gNormal && !cheater)
|
||||
addMessage(XLAT("Welcome to the Heptagonal Mode!"));
|
||||
else if(cheater || autocheat)
|
||||
addMessage(XLAT("Welcome to HyperRogue! (cheat mode on)"));
|
||||
else
|
||||
addMessage(XLAT("Welcome to HyperRogue!"));
|
||||
|
||||
if(do_use_special_land() || firstland != laIce) if(!daily::on) {
|
||||
auto lv = land_validity(specialland);
|
||||
|
Loading…
Reference in New Issue
Block a user