Merge branch 'fix-crushclaw-armageddon-hit' into 'next'

Fix segfault when Crushstaceans hit a player with Armageddon shield

See merge request STJr/SRB2!1980
This commit is contained in:
sphere 2023-05-25 21:10:45 +00:00
commit 1043a523d8

View file

@ -2231,7 +2231,7 @@ void A_CrushclawLaunch(mobj_t *actor)
} }
} }
if (!actor->target) if (P_MobjWasRemoved(actor->target))
return; return;
{ {