1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-02 10:19:04 +00:00

move the interface help to the start-game message

This commit is contained in:
Zeno Rogue
2025-12-17 22:16:12 +01:00
parent 215f9881db
commit b262f22757
5 changed files with 24 additions and 10 deletions

View File

@@ -156,11 +156,19 @@ EX void welcomeMessage() {
}
if(nohelp == 2) return;
if(!dialog::never_keys()) {
if(bow::crossbow_mode()) {
addMessage(XLAT("Press 'f' or click the crossbow icon to target."));
}
else {
#if ISMAC
addMessage(XLAT("Press F1 or right-shift-click things for help."));
#elif !ISMOBILE
addMessage(XLAT("Press F1 or right-click things for help."));
addMessage(XLAT("Press F1 or right-shift-click things for help."));
#else
addMessage(XLAT("Press F1 or right-click things for help."));
#endif
}
}
}
/** \brief These hooks are called at the start of initgame. */