Let the saber cut through sand people like butter

This commit is contained in:
Simon 2023-06-30 20:26:30 +01:00
parent 1a25d96c3d
commit 8551460577

View file

@ -2326,6 +2326,12 @@ qboolean WP_SaberDamageEffects( trace_t *tr, const vec3_t start, float length, f
//make sure the base damage is high against non-jedi, feels better
doDmg = 10;
}
// Let the saber cut through sand people like butter...
if ( hitEnt->client && hitEnt->client->NPC_class==CLASS_TUSKEN )
{
doDmg = 10;
}
}
}
if ( !hitEntDmgAdd[i] && !hitEntDmgSub[i] )