1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-21 09:01:23 +00:00

removed thematic -- could not make it cool

This commit is contained in:
Zeno Rogue
2025-07-09 09:42:38 +02:00
parent 48dd34baaf
commit 69840c6716
12 changed files with 9 additions and 272 deletions

View File

@@ -855,13 +855,6 @@ EX string generateHelpForLand(eLand l) {
}
#endif
if(isThematic(l)) {
s += XLAT("\n\nThe following lands connect to this part: ");
int qty = 0;
for(eLand l1: land_over) if(isLandIngame(l1) && which_thematic(l1) == l) { if(qty) s += ", "; qty++; s += XLATN(linf[l1].name); }
}
return s;
}