From 89fcfa91f4125fa590ed19625bf51026ee485add Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Tue, 3 Jul 2012 00:48:10 +0200 Subject: [PATCH] Numerics shouldn't be notices --- ircd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd.py b/ircd.py index e26a2b7..45bc0bd 100755 --- a/ircd.py +++ b/ircd.py @@ -102,7 +102,7 @@ class client: self.send_chunk(":%s NOTICE %s" % (config_ownhost, notice)) def send_numeric(self, numeric, notice): - self.send_chunk(":%s NOTICE %s %s" % (config_ownhost, numeric, notice)) + self.send_chunk(":%s %s %s" % (config_ownhost, numeric, notice)) def process_data(self, data): self.buff += data