diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_missile.c | 4 | ||||
-rw-r--r-- | src/game/tremulous.h | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/game/g_missile.c b/src/game/g_missile.c index 9cdca6cf..373bf390 100644 --- a/src/game/g_missile.c +++ b/src/game/g_missile.c @@ -408,8 +408,8 @@ gentity_t *fire_pulseRifle( gentity_t *self, vec3_t start, vec3_t dir ) bolt->r.ownerNum = self->s.number; bolt->parent = self; bolt->damage = PRIFLE_DMG; - bolt->splashDamage = PRIFLE_DMG; - bolt->splashRadius = PRIFLE_SPLASH_RADIUS; + bolt->splashDamage = 0; + bolt->splashRadius = 0; bolt->methodOfDeath = MOD_PRIFLE; bolt->splashMethodOfDeath = MOD_PRIFLE; bolt->clipmask = MASK_SHOT; diff --git a/src/game/tremulous.h b/src/game/tremulous.h index 57cc33ed..ae56f4a4 100644 --- a/src/game/tremulous.h +++ b/src/game/tremulous.h @@ -438,7 +438,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #define PRIFLE_K_SCALE 1.0f #define PRIFLE_RELOAD 2000 #define PRIFLE_DMG HDM(9) -#define PRIFLE_SPLASH_RADIUS 0 #define PRIFLE_SPEED 1200 #define FLAMER_PRICE 450 |