This commit is contained in:
aozhiwei 2023-03-04 20:51:41 +08:00
parent 62e5e8fd47
commit eb4dec4bad
2 changed files with 4 additions and 3 deletions

View File

@ -23,6 +23,7 @@ void HoldShieldBuff::Activate()
kPropShieldHp,
owner->shield_max_hp_,
owner->shield_hp_);
#if 0
if (skill_meta) {
switch (skill_meta->GetMagicId()) {
case MAGIC_21001_NIU:
@ -71,12 +72,14 @@ void HoldShieldBuff::Activate()
break;
}
}
#endif
}
void HoldShieldBuff::Deactivate()
{
}
#if 0
void HoldShieldBuff::Pound()
{
if (!skill_meta || skill_meta->GetMagicId() != MAGIC_21001_NIU) {
@ -148,3 +151,4 @@ void HoldShieldBuff::Pound()
0
);
}
#endif

View File

@ -9,7 +9,4 @@ class HoldShieldBuff : public Buff
virtual void Activate() override;
virtual void Deactivate() override;
private:
void Pound();
};