fix: 修复需要凹直升开局的值判断错误

(cherry picked from commit afcfa67376)
This commit is contained in:
Lancarus
2023-09-30 16:51:28 +08:00
committed by zzyyyl
parent 9ffb641cec
commit 3972e61e62

View File

@@ -46,7 +46,7 @@ bool asst::RoguelikeDifficultySelectionTaskPlugin::_run()
// 到第三层退出,选最高难度开水壶
ProcessTask(*this, { theme + "@Roguelike@ChooseDifficulty_Hardest" }).run();
// 重置为最低难度需要凹开局直升时保证在难度max下寻找直升干员延后到找不到精二重置
if (start_with_elite_two == "false") {
if (start_with_elite_two == "0") {
status()->set_properties(Status::RoguelikeNeedChangeDifficulty, "0");
}
}