This commit is contained in:
aozhiwei 2021-05-08 14:08:23 +08:00
parent 52fb6567b2
commit 5f86fbbf06

View File

@ -1568,7 +1568,21 @@ bool Creature::FreezeOperate()
void Creature::SlaveOnRemove(Entity* slave) void Creature::SlaveOnRemove(Entity* slave)
{ {
switch (slave->GetEntityType()) {
case ET_Hero:
{
}
break;
case ET_Obstacle:
{
}
break;
default:
{
abort();
}
}
} }
void Creature::RemoveMoreHero(int buff_id, int id, int num) void Creature::RemoveMoreHero(int buff_id, int id, int num)