summaryrefslogtreecommitdiff
path: root/src/net/tmwa/chathandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/chathandler.cpp')
-rw-r--r--src/net/tmwa/chathandler.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp
index 2abebf211..94bfa748c 100644
--- a/src/net/tmwa/chathandler.cpp
+++ b/src/net/tmwa/chathandler.cpp
@@ -180,18 +180,10 @@ void ChatHandler::processRaw(MessageOut &restrict outMsg,
void ChatHandler::ignoreAll() const
{
- if (!serverFeatures->haveServerIgnore())
- return;
- createOutPacket(CMSG_IGNORE_ALL);
- outMsg.writeInt8(0, "flag");
}
void ChatHandler::unIgnoreAll() const
{
- if (!serverFeatures->haveServerIgnore())
- return;
- createOutPacket(CMSG_IGNORE_ALL);
- outMsg.writeInt8(1, "flag");
}
void ChatHandler::ignore(const std::string &nick) const