mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 14:38:41 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -7,25 +7,8 @@ BattleCloseExplosivesGuardRun::BattleCloseExplosivesGuardRun(const InitArg& arg)
|
||||
|
||||
BattleCloseExplosivesGuardRun::~BattleCloseExplosivesGuardRun() = default;
|
||||
|
||||
bool BattleCloseExplosivesGuardRun::init_(sead::Heap* heap) {
|
||||
return BattleCloseExplosivesAvoidRun::init_(heap);
|
||||
}
|
||||
|
||||
void BattleCloseExplosivesGuardRun::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
BattleCloseExplosivesAvoidRun::enter_(params);
|
||||
}
|
||||
|
||||
void BattleCloseExplosivesGuardRun::leave_() {
|
||||
BattleCloseExplosivesAvoidRun::leave_();
|
||||
}
|
||||
|
||||
void BattleCloseExplosivesGuardRun::loadParams_() {
|
||||
BattleCloseMoveActionBase::loadParams_();
|
||||
getStaticParam(&mDamageIgnoreDist_s, "DamageIgnoreDist");
|
||||
}
|
||||
|
||||
void BattleCloseExplosivesGuardRun::calc_() {
|
||||
BattleCloseExplosivesAvoidRun::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
|
||||
Reference in New Issue
Block a user