This commit is contained in:
aozhiwei 2023-12-27 11:45:38 +08:00
parent 8e405e0818
commit acf3e76498
3 changed files with 7 additions and 0 deletions

View File

@ -268,6 +268,7 @@ class Human : public Creature
void SendNewBieEnd();
void LootInteraction(Loot* entity);
void ObstacleInteraction(Obstacle* entity);
void SendMobaTeamNotify();
protected:
void ProcLootWeapon(AddItemDTO& dto);

View File

@ -1964,6 +1964,11 @@ void Human::NotifyTeamMarkTargetPos()
}
}
void Human::SendMobaTeamNotify()
{
}
void GGListener::SendError(int sockhandle, unsigned int seqid,
int error_code, const std::string& error_msg,
const char* file, int lineno, int error_param)

View File

@ -395,6 +395,7 @@ void Room::AddPlayer(Player* hum, std::shared_ptr<BornPoint> init_born_point, bo
team_hash_.erase(t->GetTeamId());
}
}
hum->SendMobaTeamNotify();
}
#endif
}