mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 01:20:37 +00:00
Temple rings shown in the help screen
This commit is contained in:
parent
6be19024bb
commit
610ec5a51f
5
help.cpp
5
help.cpp
@ -781,6 +781,11 @@ EX void describeMouseover() {
|
|||||||
|
|
||||||
if(WDIM == 3 && isGravityLand(c->land)) out += " [" + its(gravityLevel(c)) + "]";
|
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))
|
if(isIcyLand(c))
|
||||||
out += " (" + fts(heat::celsius(c)) + " °C)";
|
out += " (" + fts(heat::celsius(c)) + " °C)";
|
||||||
if(c->land == laBrownian && c->wall == waNone)
|
if(c->land == laBrownian && c->wall == waNone)
|
||||||
|
Loading…
Reference in New Issue
Block a user