Add monster_male_assassin.

This commit is contained in:
Julian
2020-06-09 18:21:51 -03:00
parent 769ec8852f
commit bf607621b3
12 changed files with 380 additions and 6 deletions

View File

@@ -136,6 +136,19 @@ void DecalGunshot( TraceResult *pTrace, int iBulletType )
switch( iBulletType )
{
case BULLET_PLAYER_CROWBAR:
{
// wall decal
UTIL_DecalTrace( pTrace, DamageDecal( pEntity, DMG_CLUB ) );
break;
}
default:
{
// smoke and decal
UTIL_GunshotDecalTrace( pTrace, DamageDecal( pEntity, DMG_BULLET ) );
break;
}
/* why the duplicate case?
case BULLET_PLAYER_9MM:
case BULLET_MONSTER_9MM:
case BULLET_PLAYER_MP5:
@@ -154,6 +167,7 @@ void DecalGunshot( TraceResult *pTrace, int iBulletType )
// wall decal
UTIL_DecalTrace( pTrace, DamageDecal( pEntity, DMG_CLUB ) );
break;
*/
}
}
}