diff options
author | Stijn Buys <ingar@osirion.org> | 2013-01-06 21:08:34 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2013-01-06 21:08:34 +0000 |
commit | d5b69e209b462577e048e3fb93c2e9fe3266f5f9 (patch) | |
tree | 2c539bd4362ba73d6157cc94f7c039a0f8128aae /src/game | |
parent | c92839e5205f008a226ed82d5388e0c858ca7291 (diff) |
Increased projectile size to 0.025f.
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/base/ship.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/base/ship.cc b/src/game/base/ship.cc index 7ce6d36..e5a5a15 100644 --- a/src/game/base/ship.cc +++ b/src/game/base/ship.cc @@ -928,7 +928,7 @@ void Ship::frame(const unsigned long elapsed) } else if ((weapon->projectile_interval() > 0) && (slot->last_fired() + weapon->projectile_interval() <= core::server()->timestamp())) { // aim - const float projectile_radius = 0.01f; // FIXME this should be defined somewhere + const float projectile_radius = core::PROJECTILE_RADIUS; // FIXME this should be defined somewhere math::Axis projectile_axis(axis() * slot->axis()); math::Vector3f projectile_location(location() + (axis() * slot->location() * modelscale) + projectile_axis.forward() * projectile_radius); |