Include nickname in numerics

master
Sven Slootweg 12 years ago
parent 89fcfa91f4
commit 3d3b0c236f

@ -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

Loading…
Cancel
Save