This commit is contained in:
aozhiwei 2023-11-15 15:05:01 +08:00
parent 39fd917c8f
commit a953ede096

View File

@ -916,6 +916,9 @@ void HeroAgent::Abort(behaviac::string msg, behaviac::vector<int> args)
bool HeroAgent::HasUseableSkill()
{
if (owner_->GetCar()) {
return false;
}
return owner_->HasUseableSkill();
}