From ba23ecfab02f559a78a31e4d3dbafdec76ece6e3 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Mon, 4 Mar 2024 11:47:31 -0800 Subject: [PATCH] FX_Corpse: change movetype to MOVETYPE_BOUNCE --- src/shared/fx_corpse.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/fx_corpse.qc b/src/shared/fx_corpse.qc index 3c12f7a..d254546 100644 --- a/src/shared/fx_corpse.qc +++ b/src/shared/fx_corpse.qc @@ -59,7 +59,7 @@ FX_Corpse_Spawn(player pl, float anim) { NSRenderableEntity body_next = (NSRenderableEntity)FX_Corpse_Next(); setorigin(body_next, pl.origin + [0,0,32]); - body_next.SetMovetype(MOVETYPE_TOSS); + body_next.SetMovetype(MOVETYPE_BOUNCE); body_next.SetSolid(SOLID_CORPSE); setmodel(body_next, pl.model); setsize(body_next, VEC_HULL_MIN, [16, 16, -16]);