From 846032ece298acaba0fbc15a0233fcf9aeb3389b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 25 Dec 2018 23:56:39 +0100 Subject: [PATCH] Blue Raiders now can destroy boats --- game.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game.cpp b/game.cpp index e2047971..25f673ab 100644 --- a/game.cpp +++ b/game.cpp @@ -7236,6 +7236,8 @@ void monstersTurn() { if(canAttack(c, moCrusher, c, c->monst, AF_GETPLAYER | AF_CRUSH)) { attackMonster(c, AF_MSG | AF_GETPLAYER | AF_CRUSH, moCrusher); } + moveEffect(c, c, moDeadBird, -1); + destroyBoats(c, NULL, true); } crush_now = move(crush_next);