mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-18 01:42:01 +00:00
- SW: Only bring the weapon back up after doing chops if not on a vehicle with a weapon.
This commit is contained in:
parent
c240c8e6ee
commit
b0b2f1bf1b
1 changed files with 2 additions and 1 deletions
|
@ -6805,7 +6805,8 @@ void ChopsCheck(PLAYER* pp)
|
||||||
{
|
{
|
||||||
ChopTics = 0;
|
ChopTics = 0;
|
||||||
// bring weapon back up
|
// bring weapon back up
|
||||||
pp->Flags &= ~(PF_WEAPON_DOWN);
|
if (!pp->sop || !(pp->sop->flags & SOBJ_HAS_WEAPON))
|
||||||
|
pp->Flags &= ~(PF_WEAPON_DOWN);
|
||||||
ChopsSetRetract(pp);
|
ChopsSetRetract(pp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue