1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-23 01:47:39 +00:00

text improvements

This commit is contained in:
Zeno Rogue
2017-10-17 13:12:19 +02:00
parent 4e2a06cde5
commit c126e734cb
3 changed files with 13 additions and 3 deletions

View File

@@ -745,7 +745,7 @@ void describeMouseover() {
if(c->item == itBarrow) out += " (x" + its(c->landparam) + ")";
if(c->land == laHunting) {
int i = ambushSize(c, c->item);
if(i) out += " (" + XLAT("ambush: ") + its(i) + ")";
if(i) out += " (" + XLAT("ambush:") + " " + its(i) + ")";
}
if(c->item == itBabyTortoise && tortoise::seek())
out += " " + tortoise::measure(tortoise::babymap[c]);