1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-17 11:38:05 +00:00

Brownian shows elevation in the help line

This commit is contained in:
Zeno Rogue
2019-01-17 00:56:32 +01:00
parent 102292fdc6
commit 4564a0203c
2 changed files with 3 additions and 3 deletions

View File

@@ -797,6 +797,8 @@ void describeMouseover() {
if(isIcyLand(c))
out += " (" + fts(heat::celsius(c)) + " °C)";
if(c->land == laBrownian && c->wall == waNone)
out += XLAT(" (level %1)", its(snakelevel(c)));
if(c->land == laDryForest && c->landparam)
out += " (" + its(c->landparam)+"/10)";
if(c->land == laOcean && chaosmode)