summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsa Kravets <norfenstein@gmail.com>2009-10-03 11:16:51 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:14:49 +0000
commitb0c2f4542a2e317cd1c3de013f2737811c2aafa1 (patch)
tree5ede0a2f466915b11ce6069961cc1e1543096341
parent5119bfd1239a0303b0ea72cf57ae6e7d3bc85897 (diff)
prfile splash *actually* removed now
-rw-r--r--src/game/g_missile.c4
-rw-r--r--src/game/tremulous.h1
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