fix: 修复隐式全屏 roi 相关警告

* fix: 修复 DropsFlag 相关 task 的 roi 为全屏的问题

* perf: 统一肉鸽 Stage 类任务 baseTask 继承到对应 theme

* fix: 修复 Sami@Roguelike@StageBoonsAI6 的 roi 为全屏的问题

fix #9557
This commit is contained in:
pre-commit-ci[bot]
2024-07-22 09:28:33 +00:00
committed by zzyyyl
parent a8a87131e2
commit 81c8e3faa9
2 changed files with 31 additions and 101 deletions

View File

@@ -42,7 +42,7 @@ asst::TaskDerivedConstPtr asst::TaskData::get_raw(std::string_view name)
asst::TaskPtr asst::TaskData::get(std::string_view name)
{
// 普通任务 或 已经生成过的高级任务
// 生成过的任务
if (auto it = m_all_tasks_info.find(name); it != m_all_tasks_info.cend()) {
return it->second;
}