From f11087b83a3ea1db47ae262563f11943ff9bacf7 Mon Sep 17 00:00:00 2001 From: nillerusr Date: Mon, 5 Sep 2022 01:17:02 +0300 Subject: [PATCH] game(hl1): fix bigmomma decal --- game/server/hl1/hl1_npc_bigmomma.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/server/hl1/hl1_npc_bigmomma.cpp b/game/server/hl1/hl1_npc_bigmomma.cpp index c7693752..2f1cff32 100644 --- a/game/server/hl1/hl1_npc_bigmomma.cpp +++ b/game/server/hl1/hl1_npc_bigmomma.cpp @@ -987,7 +987,7 @@ void CNPC_BigMomma::LayHeadcrab( void ) trace_t tr; UTIL_TraceLine( GetAbsOrigin(), GetAbsOrigin() - Vector(0,0,100), MASK_SOLID, this, COLLISION_GROUP_NONE, &tr ); - UTIL_DecalTrace( &tr, "Splash" ); + UTIL_DecalTrace( &tr, "MommaBlob" ); CPASAttenuationFilter filter( this ); EmitSound( filter, entindex(), "BigMomma.LayHeadcrab" ); @@ -1233,7 +1233,7 @@ void CBMortar::Touch( CBaseEntity *pOther ) { // make a splat on the wall UTIL_TraceLine( GetAbsOrigin(), GetAbsOrigin() + GetAbsVelocity() * 10, MASK_SOLID, this, COLLISION_GROUP_NONE, &tr ); - UTIL_DecalTrace( &tr, "Splash" ); + UTIL_DecalTrace( &tr, "MommaBlob" ); } else {