From 25c79e66d29fc7509dc5a8b122a77ef183eb25ce Mon Sep 17 00:00:00 2001 From: 0O0o0oOoO00 <11174151+0O0o0oOoO00@users.noreply.github.com> Date: Sun, 11 May 2025 16:08:51 +0800 Subject: [PATCH] del: remove disable and enable check of fast stage move and opsi fast move --- blcrack/cracker/cracker.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/blcrack/cracker/cracker.cpp b/blcrack/cracker/cracker.cpp index fed59630c..6badfb301 100644 --- a/blcrack/cracker/cracker.cpp +++ b/blcrack/cracker/cracker.cpp @@ -302,13 +302,13 @@ void Cracker::update_gg_factor(double factor) { } void Cracker::enable_opsi_fast_move() { - IS_ENABLED(OPSI_FAST_MOVE) + // IS_ENABLED(OPSI_FAST_MOVE) m_state["WorldConst"]["BaseMoveDuration"] = 0.0; ENABLE(OPSI_FAST_MOVE) } void Cracker::disable_opsi_fast_move() { - IS_DISABLED(OPSI_FAST_MOVE) + // IS_DISABLED(OPSI_FAST_MOVE) m_state["WorldConst"]["BaseMoveDuration"] = 0.35; ENABLE(OPSI_FAST_MOVE) } @@ -444,7 +444,7 @@ void Cracker::disable_remove_hard_mode_ship_properties_limit() { } void Cracker::enable_fast_stage_move() { - IS_ENABLED(FAST_STAGE_MOVE_CRACK) + // IS_ENABLED(FAST_STAGE_MOVE_CRACK) m_state["ChapterConst"]["ShipStepDuration"] = 0.0; m_state["ChapterConst"]["ShipStepQuickPlayScale"] = 0.0; @@ -453,7 +453,7 @@ void Cracker::enable_fast_stage_move() { } void Cracker::disable_fast_stage_move() { - IS_DISABLED(FAST_STAGE_MOVE_CRACK) + // IS_DISABLED(FAST_STAGE_MOVE_CRACK) m_state["ChapterConst"]["ShipStepDuration"] = 0.5; m_state["ChapterConst"]["ShipStepQuickPlayScale"] = 0.5;