1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-27 20:07:40 +00:00

compass probability now can be changed from menu/commandline

This commit is contained in:
Zeno Rogue
2018-12-03 23:15:53 +01:00
parent 46256155d7
commit 3e747a2d9d
3 changed files with 19 additions and 1 deletions

View File

@@ -242,7 +242,10 @@ string generateHelpForItem(eItem it) {
string help = helptitle(XLATN(iinf[it].name), iinf[it].color);
help += XLAT(iinf[it].help);
if(it == itCompass && geometry == gCrystal)
help += crystal::compass_help();
else
help += XLAT(iinf[it].help);
if(it == itSavedPrincess || it == itOrbLove) if(!inv::on)
help += princessReviveHelp();