mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 06:55:48 +00:00
- Duke: Clean up player/actor accesses in moveactor()
.
This commit is contained in:
parent
ac35e09d1c
commit
3925af453a
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ void moveactor(DDukeActor* actor, int p, double pdist, const int killit_flag)
|
|||
if (killit_flag == 1)
|
||||
{
|
||||
// if player was set to squish, first stop that..
|
||||
if (getPlayer(p)->actorsqu == actor)
|
||||
getPlayer(p)->actorsqu = nullptr;
|
||||
const auto pp = getPlayer(p);
|
||||
if (pp->actorsqu == actor) pp->actorsqu = nullptr;
|
||||
actor->flags2 |= SFLAG2_DIENOW;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue