From bac20a9ecc11e8f0f3b3edd097fe712efad12f90 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 6 Apr 2025 10:25:08 +0200 Subject: [PATCH] rogueviz::ads:: fixed help for lands, and right-clikc object for helps --- rogueviz/ads/help.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rogueviz/ads/help.cpp b/rogueviz/ads/help.cpp index b1323ee4..07a2cf82 100644 --- a/rogueviz/ads/help.cpp +++ b/rogueviz/ads/help.cpp @@ -125,7 +125,7 @@ int generate_mouseovers() { auto& ci = ci_at[w.first]; mouseovers = land_name(w.first); titlecolor = help_color(w.first); - help = get_land_help(c); + help = get_land_help(w.first); switch(ci.type) { case wtDestructible: case wtSolid: @@ -151,6 +151,7 @@ string get_main_help() { "Good luck!\n\nSee the Guided Tour for more explanation about how de Sitter spacetime used in this game works."; else return "Explore the world, shoot asteroids and enemies, collect treasures and resources. The more treasures you collect, the harder the game becomes. Good luck!\n\n" + "Right-click objects while paused for more information about them.\n\n" "See the Guided Tour for more explanation about how anti-de Sitter spacetime used in this game works."; }