diff --git a/server/gameserver/room.cc b/server/gameserver/room.cc index 6ca50c77..a5cf9cae 100644 --- a/server/gameserver/room.cc +++ b/server/gameserver/room.cc @@ -3096,6 +3096,7 @@ void Room::OnBattleStart() }); battle_starting_ = false; SendSMTeamFull(nullptr); + SendRecentBattle(); } bool Room::CanAddObstacle(const glm::vec3& pos, int obstacle_id) @@ -4010,3 +4011,8 @@ void Room::TryRoomReport(int try_count) a8::XPrintf("RoomReportLen:%d\n", {params->ToJsonStr().size()}); #endif } + +void Room::SendRecentBattle() +{ + +} diff --git a/server/gameserver/room.h b/server/gameserver/room.h index 55f487a3..6baf5308 100644 --- a/server/gameserver/room.h +++ b/server/gameserver/room.h @@ -377,6 +377,7 @@ private: void DecAliveCount(); void GenBattleRoomReportData(a8::MutableXObject* params); void TryRoomReport(int try_count); + void SendRecentBattle(); private: bool destorying_ = false;