From 4b6a54f8bff3015d2f6e9cd0ee7cc2a2f0bc528a Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 28 Aug 2015 13:47:13 +0200 Subject: Reaktor: reload config if name change detected --- Reaktor/reaktor/core.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'Reaktor/reaktor/core.py') diff --git a/Reaktor/reaktor/core.py b/Reaktor/reaktor/core.py index 15166d9e..327d120a 100755 --- a/Reaktor/reaktor/core.py +++ b/Reaktor/reaktor/core.py @@ -58,6 +58,17 @@ class Reaktor(asybot): self.execute_command(command, None, prefix, params) def on_privmsg(self, prefix, command, params, rest): + if not ( self.nickname == self.getconf('name')): + # reload config if the name changed + # TODO: this sucks, use another sidechannel to tell config the new + # nickname + log.debug("nickname differs ('{}' to '{}')".format( + self.nickname, self.getconf('name'))) + + os.environ['IRC_NICKNAME'] = self.nickname + self.getconf = make_getconf(self.config) + log.info('nickname changed to {}'.format(self.getconf('name'))) + for command in self.getconf('commands'): y = match(command['pattern'], rest) if y: -- cgit v1.2.3