Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/ship.cc')
-rw-r--r--src/game/ship.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/ship.cc b/src/game/ship.cc
index d8f7bb3..aa47044 100644
--- a/src/game/ship.cc
+++ b/src/game/ship.cc
@@ -64,7 +64,7 @@ void Ship::frame(float seconds)
entity_thrust = target_thrust;
- if (autolevel()) {
+ if (autolevel() && Game::instance()->g_autolevel->value()) {
n.assign(math::crossproduct(entity_axis.up(), math::Vector3f(0, 0, 1.0f)));
if (!(n.length() < MIN_DELTA)) {
cosangle = math::dotproduct(entity_axis.up(), math::Vector3f(0, 0, 1.0f));
@@ -96,7 +96,7 @@ void Ship::frame(float seconds)
}
// auto-leveling
- if (autolevel()) {
+ if (autolevel() && Game::instance()->g_autolevel->value()) {
n.assign(math::crossproduct(entity_axis.up(), math::Vector3f(0.0f, 0.0f, 1.0f)));
if (!(n.length() < MIN_DELTA)) {
cosangle = math::dotproduct(entity_axis.up(), math::Vector3f(0.0f, 0.0f, 1.0f));