fix: 肉鸽临时招募预备干员时, 不额外提升权重 (#11442)

fix: 尝试修复临时招募预备干员的权重过高
This commit is contained in:
晓丶梦丶仁
2025-01-30 22:22:19 +08:00
committed by GitHub
parent 38dc9e7400
commit fa85cca0e2

View File

@@ -284,7 +284,8 @@ bool asst::RoguelikeRecruitTaskPlugin::_run()
oper_info.level);
}
if (temp_recruit_exist) { // 临时招募干员具有极高抓取优先级,但是在编队时会占用前面的位置
if (temp_recruit_exist && !oper_info.name.starts_with("预备干员")) {
// 临时招募干员具有极高抓取优先级,但是在编队时会占用前面的位置
priority += 600;
temp_recruit_exist = false;
}