diff --git a/server/gameserver/roommgr.cc b/server/gameserver/roommgr.cc index 03811cb2..ef6b9ef0 100644 --- a/server/gameserver/roommgr.cc +++ b/server/gameserver/roommgr.cc @@ -1090,6 +1090,13 @@ void RoomMgr::SendGetCustomBattleData(std::shared_ptr join_msg, } else { url += "?&c=Battle&a=getMobaBattleData"; } + } else if (custom_room_type == CUSTOM_ROOM_NORMAL) { + if (url.find('?') != std::string::npos) { + url += "&c=Battle&a=getNormalBattleData"; + } else { + url += "?&c=Battle&a=getNormalBattleData"; + } + } else { if (url.find('?') != std::string::npos) { url += "&c=Battle&a=getCustomBattleData";