mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-25 21:41:44 +00:00
- Duke: Ensure that the expander hitscans when autoaim is "hitscan only".
* Fixes #827.
This commit is contained in:
parent
205dac85e6
commit
1d69ebe9b0
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue