1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 09:50:34 +00:00

fixed the missing message when picking up orbs from a boat

This commit is contained in:
Zeno Rogue 2018-06-28 13:35:15 +02:00
parent cf8dffd6b8
commit 92240a0eeb

View File

@ -6346,7 +6346,7 @@ void collectMessage(cell *c2, eItem which) {
else if(which == itGreenStone)
addMessage(XLAT("Another Dead Orb."));
else if(itemclass(which) != IC_TREASURE) {
if(c2->wall != waBoat && !inv::activating)
if(!inv::activating)
addMessage(XLAT("You have found %the1!", which));
}
else if(which == itBabyTortoise) {