1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-05-10 11:14:07 +00:00

rogueviz::ads:: fixed help for lands, and right-clikc object for helps

This commit is contained in:
Zeno Rogue 2025-04-06 10:25:08 +02:00
parent ba3674f078
commit bac20a9ecc

View File

@ -125,7 +125,7 @@ int generate_mouseovers() {
auto& ci = ci_at[w.first]; auto& ci = ci_at[w.first];
mouseovers = land_name(w.first); mouseovers = land_name(w.first);
titlecolor = help_color(w.first); titlecolor = help_color(w.first);
help = get_land_help(c); help = get_land_help(w.first);
switch(ci.type) { switch(ci.type) {
case wtDestructible: case wtSolid: 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."; "Good luck!\n\nSee the Guided Tour for more explanation about how de Sitter spacetime used in this game works.";
else return 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" "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."; "See the Guided Tour for more explanation about how anti-de Sitter spacetime used in this game works.";
} }