From 6ba3b4ecd522812e16d7c8f07cc87560e83a0204 Mon Sep 17 00:00:00 2001 From: MysterD Date: Mon, 21 Sep 2020 18:18:19 -0700 Subject: [PATCH] Prevent chain chomp from hurting people in cutscene --- src/game/behaviors/chain_chomp.inc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/game/behaviors/chain_chomp.inc.c b/src/game/behaviors/chain_chomp.inc.c index 843fc121..b7053960 100644 --- a/src/game/behaviors/chain_chomp.inc.c +++ b/src/game/behaviors/chain_chomp.inc.c @@ -452,6 +452,9 @@ static void chain_chomp_act_move(void) { #ifndef NODRAWINGDISTANCE } #endif + if (o->oChainChompReleaseStatus != CHAIN_CHOMP_NOT_RELEASED) { + cur_obj_become_intangible(); + } } /**