mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 06:55:48 +00:00
fixed autoaiming.
The WW2GI pistol check was completely wrong. :(
This commit is contained in:
parent
d352f564db
commit
9315c8b307
1 changed files with 2 additions and 4 deletions
|
@ -212,13 +212,11 @@ DDukeActor* aim(DDukeActor* actor, int abase, bool force, bool* b)
|
|||
auto* plr = getPlayer(actor->PlayerIndex());
|
||||
int autoaim = force? 1 : Autoaim(actor->PlayerIndex());
|
||||
|
||||
bool ww2gipistol = (plr->curr_weapon == PISTOL_WEAPON && isWW2GI());
|
||||
bool otherpistol = (plr->curr_weapon == PISTOL_WEAPON && !isWW2GI());
|
||||
|
||||
// Some fudging to avoid aim randomization when autoaim is off.
|
||||
// This is a reimplementation of how it was solved in RedNukem.
|
||||
if (!ww2gipistol && (autoaim || otherpistol))
|
||||
if (plr->curr_weapon == PISTOL_WEAPON)
|
||||
{
|
||||
if (isWW2GI()) return nullptr; // WW2GI's pistol never autoaims.
|
||||
double vel = 1024, zvel = 0;
|
||||
setFreeAimVelocity(vel, zvel, plr->getPitchWithView(), 16.);
|
||||
|
||||
|
|
Loading…
Reference in a new issue