diff --git a/server/gameserver/room.cc b/server/gameserver/room.cc index 9d5e7305..71c36666 100644 --- a/server/gameserver/room.cc +++ b/server/gameserver/room.cc @@ -3868,3 +3868,8 @@ void Room::CloseRoomSwitch(int tag) { a8::UnSetBitFlag(room_switch_, tag); } + +void Room::NotifyNewsTicker(int msg_type, std::vector msg_content) +{ + +} diff --git a/server/gameserver/room.h b/server/gameserver/room.h index d6432ac3..5afcd875 100644 --- a/server/gameserver/room.h +++ b/server/gameserver/room.h @@ -251,6 +251,7 @@ public: bool HasRoomSwitch(int tag); void OpenRoomSwitch(int tag); void CloseRoomSwitch(int tag); + void NotifyNewsTicker(int msg_type, std::vector msg_content); private: void ShuaAndroid();