1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-02 18:57:56 +00:00

expansion_analyzer is now in cgi

This commit is contained in:
Zeno Rogue
2021-12-11 23:28:05 +01:00
parent cfcd8a5e57
commit 5d81260f0b
10 changed files with 28 additions and 11 deletions

View File

@@ -460,7 +460,7 @@ EX void knightFlavorMessage(cell *c2) {
s = crystal::get_table_boundary();
#endif
else if(!quotient && rad)
s = expansion.get_descendants(rad).get_str(100);
s = get_expansion().get_descendants(rad).get_str(100);
if(s == "") { msgid++; goto retry; }
addMessage(XLAT("\"Our Table seats %1 Knights!\"", s));
}
@@ -472,7 +472,7 @@ EX void knightFlavorMessage(cell *c2) {
s = crystal::get_table_volume();
#endif
else if(!quotient && rad)
s = expansion.get_descendants(rad-1, expansion.diskid).get_str(100);
s = get_expansion().get_descendants(rad-1, get_expansion().diskid).get_str(100);
if(s == "") { msgid++; goto retry; }
addMessage(XLAT("\"There are %1 floor tiles inside our Table!\"", s));
}