This commit is contained in:
aozhiwei 2021-05-08 17:31:23 +08:00
parent f0e2405eb1
commit 3e4d2916ed
2 changed files with 4 additions and 4 deletions

View File

@ -1585,12 +1585,12 @@ void Creature::SlaveOnRemove(Entity* slave)
}
}
void Creature::RemoveMoreHero(int buff_id, int id, int num)
void Creature::RemoveSurplusHero(int buff_id, int id, int num)
{
}
void Creature::RemoveMoreObstacle(int buff_id, int id, int num)
void Creature::RemoveSurplusObstacle(int buff_id, int id, int num)
{
}

View File

@ -165,8 +165,8 @@ private:
Skill* GetPassiveSkill(int skill_id);
void RemovePassiveSkill(int skill_id);
void RemoveMoreHero(int buff_id, int id, int num);
void RemoveMoreObstacle(int buff_id, int id, int num);
void RemoveSurplusHero(int buff_id, int id, int num);
void RemoveSurplusObstacle(int buff_id, int id, int num);
protected:
RaceType_e race_ = kHumanRace;