diff options
author | enneract <trem.redman@gmail.com> | 2014-12-19 20:38:46 +0100 |
---|---|---|
committer | enneract <trem.redman@gmail.com> | 2014-12-19 20:38:46 +0100 |
commit | 3a7015bd646110a378c3b5f0a8638368f2827788 (patch) | |
tree | 07cb29caa192f462664b5881b9cbaf7f7502a5a0 /src/game/g_missile.c | |
parent | 3afe13c2a292e0940a05634b322300ccd1238541 (diff) |
Implement combat statistics.
Diffstat (limited to 'src/game/g_missile.c')
-rw-r--r-- | src/game/g_missile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_missile.c b/src/game/g_missile.c index ab0156b..8c6e36d 100644 --- a/src/game/g_missile.c +++ b/src/game/g_missile.c @@ -734,8 +734,8 @@ gentity_t *FireBreath_fire( gentity_t *self, vec3_t start, vec3_t dir, bolt->damage = LEVEL4_FIREBREATHDMG; bolt->splashDamage = 60; bolt->splashRadius = 250 ; - bolt->methodOfDeath = MOD_FLAMES; - bolt->splashMethodOfDeath = MOD_FLAMER_SPLASH; + bolt->methodOfDeath = MOD_LEVEL4_FLAMES; + bolt->splashMethodOfDeath = MOD_LEVEL4_FLAMES; bolt->clipmask = MASK_SHOT; bolt->target_ent = NULL; |