mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-18 01:31:11 +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
318bba469f
commit
40c0c66d8f
1 changed files with 2 additions and 1 deletions
|
@ -6919,7 +6919,8 @@ void ChopsCheck(PLAYER* pp)
|
|||
{
|
||||
ChopTics = 0;
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue