1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-24 06:03:23 +00:00

Temple rings shown in the help screen

This commit is contained in:
Zeno Rogue 2020-01-28 15:21:39 +01:00
parent 6be19024bb
commit 610ec5a51f

View File

@ -781,6 +781,11 @@ EX void describeMouseover() {
if(WDIM == 3 && isGravityLand(c->land)) out += " [" + its(gravityLevel(c)) + "]";
if(c->land == laTemple && c->master->alt) {
int lev = -celldistAlt(c);
int ts = temple_layer_size();
out += " (" + its(lev/ts+1) + ":" + its(lev%ts) + ")";
}
if(isIcyLand(c))
out += " (" + fts(heat::celsius(c)) + " °C)";
if(c->land == laBrownian && c->wall == waNone)