summaryrefslogtreecommitdiff
path: root/bot/src/irc/message.hpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-19 02:10:39 +0500
committerilotterytea <iltsu@alright.party>2024-05-19 02:10:39 +0500
commit59b52bfab39d98a11052497ab387011a9835ef1b (patch)
tree9f911b85fa2a621386bbff418c48582c51637172 /bot/src/irc/message.hpp
parenta808ec07cbbb4fc6118d97b8e7985debe1274a5f (diff)
feat: handle ping messages
Diffstat (limited to 'bot/src/irc/message.hpp')
-rw-r--r--bot/src/irc/message.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/irc/message.hpp b/bot/src/irc/message.hpp
index 164d7ca..54b911b 100644
--- a/bot/src/irc/message.hpp
+++ b/bot/src/irc/message.hpp
@@ -11,7 +11,7 @@
namespace bot {
namespace irc {
- enum MessageType { Privmsg, Notice };
+ enum MessageType { Privmsg, Ping, Notice };
std::optional<MessageType> define_message_type(const std::string &msg);
struct MessageSender {