From 04522db8d540a264d3e136d38c693e8fa97bdabd Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 30 Nov 2008 16:06:59 +0000 Subject: realistic strafe speed, moved launch buttons to the top of the docking menu --- src/game/base/ship.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/base/ship.cc') diff --git a/src/game/base/ship.cc b/src/game/base/ship.cc index 5473581..3071bb7 100644 --- a/src/game/base/ship.cc +++ b/src/game/base/ship.cc @@ -485,7 +485,7 @@ void Ship::frame(float seconds) } if (fabs(current_target_strafe) > MIN_DELTA) { - entity_location += entity_axis.left() * (current_target_strafe * Game::g_strafespeed->value()); + entity_location += entity_axis.left() * (current_target_strafe * 0.15f * actual_maxspeed) * seconds; } entity_movement = target_thrust; -- cgit v1.2.3