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

This commit is contained in:
Lancarus
2023-09-30 16:51:28 +08:00
committed by zzyyyl
parent f0316f16c9
commit afcfa67376

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");
}
}