diff --git a/source/games/duke/src/player.cpp b/source/games/duke/src/player.cpp index f401d26e0..19f5e2dd8 100644 --- a/source/games/duke/src/player.cpp +++ b/source/games/duke/src/player.cpp @@ -274,7 +274,7 @@ DDukeActor* aim(DDukeActor* actor, int abase) // The chickens in RRRA are homing and must always autoaim. if (!isRRRA() || plr->curr_weapon != CHICKEN_WEAPON) { - if (weap > CHAINGUN_WEAPON || weap == KNEE_WEAPON) + if ((weap > CHAINGUN_WEAPON && weap != GROW_WEAPON) || weap == KNEE_WEAPON) { return nullptr; }