From 62d4aa50ac8285590ee8cb9054f6573b0f24bc9b Mon Sep 17 00:00:00 2001 From: Arthur O'Dwyer Date: Sun, 24 Dec 2017 00:41:02 -0800 Subject: [PATCH] Pushing a thumper through a boat is no longer allowed. The old behavior was that you could push a thumper onto a stranded boat, which would destroy the stranded boat. --- game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.cpp b/game.cpp index 7ca4136a..7cf31b94 100644 --- a/game.cpp +++ b/game.cpp @@ -6270,7 +6270,7 @@ void pushThumper(cell *th, cell *cto) { } bool canPushThumperOn(cell *tgt, cell *thumper, cell *player) { - if(tgt->wall == waBoat) return false; + if(tgt->wall == waBoat || tgt->wall == waStrandedBoat) return false; if(isReptile(tgt->wall)) return false; if(isWatery(tgt) && !tgt->monst) return true;