1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-19 13:29:28 +08:00

del: remove disable and enable check of fast stage move and opsi fast move

This commit is contained in:
0O0o0oOoO00
2025-05-11 16:08:51 +08:00
parent 0c40589ed9
commit 25c79e66d2

View File

@@ -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;