From cfb9ebf8e5a961f59cc6f29344957c10162565a3 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 10 Nov 2022 10:00:44 +0100 Subject: [PATCH] - fixed bad velocity assignment in DoLaser, causing an endless loop. --- source/games/sw/src/weapon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index 6b6fdfcb8..8aac72508 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -9360,7 +9360,7 @@ int DoLaser(DSWActor* actor) actorNew->spr.cstat |= (CSTAT_SPRITE_YCENTER); actorNew->spr.cstat &= ~(CSTAT_SPRITE_BLOCK|CSTAT_SPRITE_BLOCK_HITSCAN); - actor->user.change.Zero(); + actorNew->user.change.Zero(); } } }