diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/hudenginestatus.cc | 2 | ||||
-rw-r--r-- | src/client/input.cc | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/client/hudenginestatus.cc b/src/client/hudenginestatus.cc index 0eeafba..ab51709 100644 --- a/src/client/hudenginestatus.cc +++ b/src/client/hudenginestatus.cc @@ -95,7 +95,7 @@ void HUDEngineStatus::draw() // autopilot and control lock buttons // see HUD::draw() - const bool control_lock = !input::mouse_control; + const bool control_lock = !core::localcontrol()->has_target_controlflag(core::EntityControlable::ControlFlagOverride); if (core::localplayer()->autopilot_target()) { diff --git a/src/client/input.cc b/src/client/input.cc index dadc027..85d8526 100644 --- a/src/client/input.cc +++ b/src/client/input.cc @@ -1076,7 +1076,8 @@ void frame() break; } - } else if (mouse_control) + } + else if (mouse_control) { // mouse is controling direction switch (render::camera().mode()) |