chore.暂时屏蔽偏激模式,修改版本号

This commit is contained in:
MistEO
2021-11-08 22:37:53 +08:00
parent d75ceb39f6
commit 2e3fe35104
2 changed files with 6 additions and 1 deletions

View File

@@ -271,6 +271,11 @@ bool asst::Assistance::start_infrast_shift(InfrastWorkMode work_mode, const std:
return false;
}
// 偏激模式还没来得及做,保留用户接口,内部先按激进模式走
if (work_mode == InfrastWorkMode::Extreme) {
work_mode = InfrastWorkMode::Aggressive;
}
constexpr static const char* InfrastTaskCahin = "Infrast";
// 这个流程任务,结束的时候是处于基建主界面的。既可以用于进入基建,也可以用于从设施里返回基建主界面

View File

@@ -1,5 +1,5 @@
#pragma once
namespace asst {
constexpr static const char* Version = "v1.3-beta";
constexpr static const char* Version = "v1.3-beta.2";
}