This commit is contained in:
aozhiwei 2023-02-13 13:20:17 +08:00
parent 2b8063a97a
commit c2fb7b3371

View File

@ -102,6 +102,21 @@ void SelfChecker::Init()
for (int buff_id : meta->_buff_list) {
SelfChecker::AddBuff(buff_id);
}
for (auto& phase : meta->_phases) {
switch (phase.func_id) {
case kSkill_ForthBackJump:
{
for (int buff_id : phase.phase_param3_ints) {
SelfChecker::AddBuff(buff_id);
}
}
break;
default:
{
}
break;
}
}
});
mt::Buff::Traverse
(