- Duke: Clean up player/actor accesses in moveactor().

This commit is contained in:
Mitchell Richters 2023-10-02 20:36:39 +11:00
parent ac35e09d1c
commit 3925af453a

View file

@ -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