summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--command.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/command.c b/command.c
index 76d7d7b..ef27888 100644
--- a/command.c
+++ b/command.c
@@ -20,6 +20,10 @@
#include "chat.h"
void command(size_t id, char *input) {
+ if (id == Debug) {
+ ircFormat("%s\r\n", input);
+ return;
+ }
ircFormat("PRIVMSG %s :%s\r\n", idNames[id], input);
struct Message msg = {
.nick = self.nick,