1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-19 12:28:07 +00:00

bestiaries are now shown in the help for lands

This commit is contained in:
Zeno Rogue
2017-10-09 01:40:32 +02:00
parent 77212e59e5
commit 32ab46d5cd
3 changed files with 114 additions and 23 deletions

View File

@@ -140,10 +140,9 @@ void showOverview() {
int udiv = uni / 1000;
if(udiv == 1 && umod < landtypes) {
eLand l = eLand(umod);
gotoHelp(generateHelpForLand(l));
gotoHelp(""); gotoHelpFor(l);
if(cheater) {
help_action_text = "teleport";
help_action = [l] () {
help_extensions.push_back(help_extension{'t', XLAT("teleport"), [l] () {
cheater++;
bool princ = (l == laPrincessQuest);
if(princ) {
@@ -157,7 +156,7 @@ void showOverview() {
if(princ) fullcenter();
popScreen();
popScreen();
};
}});
}
}
else if(udiv == 2 && umod < ittypes) {