1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-11 03:03:01 +00:00

tour:: removed 'returned to your game' message when inappropriate

This commit is contained in:
Zeno Rogue
2025-09-29 11:52:40 +02:00
parent d6e0d6e64d
commit fa84cd2f40

View File

@@ -239,7 +239,6 @@ void return_geometry() {
gamestack::pop(); gamestack::pop();
pconf.scale = 1; pconf.alpha = 1; pconf.scale = 1; pconf.alpha = 1;
presentation(pmGeometryReset); presentation(pmGeometryReset);
addMessage(XLAT("Returned to your game."));
} }
EX void return_geometries() { EX void return_geometries() {
@@ -259,7 +258,10 @@ EX bool next_slide() {
popScreenAll(); popScreenAll();
if(gamestack::pushed()) { if(gamestack::pushed()) {
return_geometry(); return_geometry();
if(!(flags & QUICKGEO)) return true; if(!(flags & QUICKGEO)) {
addMessage(XLAT("Returned to your game."));
return true;
}
} }
if(flags & FINALSLIDE) return true; if(flags & FINALSLIDE) return true;
presentation(pmStop); presentation(pmStop);