From fa84cd2f409d3c2388b21384438a1494b6ad0d1b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 29 Sep 2025 11:52:40 +0200 Subject: [PATCH] tour:: removed 'returned to your game' message when inappropriate --- tour.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tour.cpp b/tour.cpp index 477d7ca8..d7f91583 100644 --- a/tour.cpp +++ b/tour.cpp @@ -239,7 +239,6 @@ void return_geometry() { gamestack::pop(); pconf.scale = 1; pconf.alpha = 1; presentation(pmGeometryReset); - addMessage(XLAT("Returned to your game.")); } EX void return_geometries() { @@ -259,7 +258,10 @@ EX bool next_slide() { popScreenAll(); if(gamestack::pushed()) { return_geometry(); - if(!(flags & QUICKGEO)) return true; + if(!(flags & QUICKGEO)) { + addMessage(XLAT("Returned to your game.")); + return true; + } } if(flags & FINALSLIDE) return true; presentation(pmStop);