diff options
Diffstat (limited to 'src/net/tmwa/adminhandler.cpp')
-rw-r--r-- | src/net/tmwa/adminhandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/tmwa/adminhandler.cpp b/src/net/tmwa/adminhandler.cpp index 44b6f9038..5a35ed3c4 100644 --- a/src/net/tmwa/adminhandler.cpp +++ b/src/net/tmwa/adminhandler.cpp @@ -76,27 +76,27 @@ void AdminHandler::handleMessage(Net::MessageIn &msg) void AdminHandler::announce(const std::string &text) const { - MessageOut outMsg(CMSG_ADMIN_ANNOUNCE); + createOutPacket(CMSG_ADMIN_ANNOUNCE); outMsg.writeInt16(static_cast<int16_t>(text.length() + 4), "len"); outMsg.writeString(text, static_cast<int>(text.length()), "message"); } void AdminHandler::localAnnounce(const std::string &text) const { - MessageOut outMsg(CMSG_ADMIN_LOCAL_ANNOUNCE); + createOutPacket(CMSG_ADMIN_LOCAL_ANNOUNCE); outMsg.writeInt16(static_cast<int16_t>(text.length() + 4), "len"); outMsg.writeString(text, static_cast<int>(text.length()), "message"); } void AdminHandler::hide(const bool h A_UNUSED) const { - MessageOut outMsg(CMSG_ADMIN_HIDE); + createOutPacket(CMSG_ADMIN_HIDE); outMsg.writeInt32(0, "unused"); } void AdminHandler::kick(const int playerId) const { - MessageOut outMsg(CMSG_ADMIN_KICK); + createOutPacket(CMSG_ADMIN_KICK); outMsg.writeInt32(playerId, "account id"); } |