From 3d3b0c236ffb55c6d83a94f9a18f1071f9fe9f9f Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Tue, 3 Jul 2012 00:49:54 +0200 Subject: [PATCH] Include nickname in numerics --- ircd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd.py b/ircd.py index 45bc0bd..037bb27 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 %s %s" % (config_ownhost, numeric, notice)) + self.send_chunk(":%s %s %s %s" % (config_ownhost, numeric, self.user.nickname, notice)) def process_data(self, data): self.buff += data