WEAPON_SNARK do 10 damage consistently. Figures.
This commit is contained in:
parent
e75e3a2904
commit
356ca638b5
1 changed files with 1 additions and 2 deletions
|
@ -83,7 +83,7 @@ void w_snark_deploy(void)
|
||||||
if (trace_ent.classname == "player") {
|
if (trace_ent.classname == "player") {
|
||||||
float pit = 100 + random(0,10);
|
float pit = 100 + random(0,10);
|
||||||
sound(self, CHAN_BODY, "squeek/sqk_deploy1.wav", 1.0, ATTN_NORM, pit);
|
sound(self, CHAN_BODY, "squeek/sqk_deploy1.wav", 1.0, ATTN_NORM, pit);
|
||||||
Damage_Apply(trace_ent, self, 5, trace_endpos, FALSE);
|
Damage_Apply(trace_ent, self, 10, trace_endpos, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (self.aiment.health <= 0) {
|
if (self.aiment.health <= 0) {
|
||||||
|
@ -137,7 +137,6 @@ void w_snark_primary(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Audio-Visual Bit */
|
/* Audio-Visual Bit */
|
||||||
#ifdef CSQC
|
#ifdef CSQC
|
||||||
Weapons_ViewAnimation(SNARK_THROW);
|
Weapons_ViewAnimation(SNARK_THROW);
|
||||||
|
|
Loading…
Reference in a new issue