diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-11-22 22:43:01 +0200 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-11-22 22:43:01 +0200 |
commit | 7110bced025e3453c70ec5cd6405a8d194c748bf (patch) | |
tree | 39886d5ede20daf8915e63c79c392f3a6c4308cf /src/game/g_missile.c | |
parent | b7f1c60eba246d8d87dfb1e3eaf69e4bcb1645ee (diff) | |
parent | 07a69adf645f56a050075d61d54380665bd8dd1f (diff) |
Merge branch 'master' of github.com:mtiusane/new-edge
Diffstat (limited to 'src/game/g_missile.c')
-rw-r--r-- | src/game/g_missile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_missile.c b/src/game/g_missile.c index 959067e..f9096ef 100644 --- a/src/game/g_missile.c +++ b/src/game/g_missile.c @@ -989,7 +989,7 @@ gentity_t *fire_rocket( gentity_t *self, vec3_t start, vec3_t dir ) bolt->r.ownerNum = self->s.number; bolt->parent = self; bolt->damage = ROCKETL_DAMAGE; - bolt->splashDamage = ROCKETL_DAMAGE / 2; + bolt->splashDamage = ROCKETL_DAMAGE; bolt->splashRadius = ROCKETL_RADIUS; bolt->methodOfDeath = MOD_ROCKETL; bolt->splashMethodOfDeath = MOD_ROCKETL_SPLASH; |