mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-24 13:01:36 +00:00
Let Noghri also be sliced up easily
This commit is contained in:
parent
8551460577
commit
f4d9ab0854
1 changed files with 4 additions and 2 deletions
|
@ -2327,8 +2327,10 @@ qboolean WP_SaberDamageEffects( trace_t *tr, const vec3_t start, float length, f
|
|||
doDmg = 10;
|
||||
}
|
||||
|
||||
// Let the saber cut through sand people like butter...
|
||||
if ( hitEnt->client && hitEnt->client->NPC_class==CLASS_TUSKEN )
|
||||
// Let the saber cut through sand people and Noghri like butter...
|
||||
if ( hitEnt->client && (
|
||||
hitEnt->client->NPC_class==CLASS_TUSKEN ||
|
||||
hitEnt->client->NPC_class==CLASS_NOGHRI))
|
||||
{
|
||||
doDmg = 10;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue