This commit is contained in:
aozhiwei 2023-02-28 16:12:16 +08:00
parent db024e9a80
commit 36d8036d25
2 changed files with 9 additions and 1 deletions

View File

@ -114,7 +114,7 @@ void Android::InternalUpdate(int delta_time)
return;
}
}
#if 1
#if 0
agent_->Exec();
#endif
}

View File

@ -219,6 +219,14 @@ void SelfChecker::Init()
SelfChecker::AddBuff(buff_id);
}
}
if (meta->thing_type() == kObstacleMedicalStation) {
if (meta->_int_param1) {
SelfChecker::AddBuff(meta->_int_param1);
}
if (meta->_int_param2) {
SelfChecker::AddBuff(meta->_int_param2);
}
}
});
Check();
}