diff options
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); |