From 92240a0eebbd0613624707fcc2ad27508ffc0c1e Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 28 Jun 2018 13:35:15 +0200 Subject: [PATCH] fixed the missing message when picking up orbs from a boat --- game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.cpp b/game.cpp index e4e95548..26c12196 100644 --- a/game.cpp +++ b/game.cpp @@ -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) {