1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 06:33:19 +00:00

item help bugfix

This commit is contained in:
Zeno Rogue 2017-10-10 14:04:28 +02:00
parent 206e56942a
commit a154ead894

View File

@ -735,7 +735,7 @@ void describeMouseover() {
if(c->item == itBabyTortoise && tortoise::seek())
out += " " + tortoise::measure(tortoise::babymap[c]);
if(!c->monst)
help = bygen([c] () { gotoHelpFor(c->monst); });
help = bygen([c] () { gotoHelpFor(c->item); });
}
if(isPlayerOn(c) && !shmup::on) out += XLAT(", you"), help = generateHelpForMonster(moPlayer);