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:
6
tour.cpp
6
tour.cpp
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user