diff --git a/plugins/Status.py b/plugins/Status.py index 56c1fb71d..381b57ba2 100644 --- a/plugins/Status.py +++ b/plugins/Status.py @@ -116,7 +116,8 @@ class Status(callbacks.Privmsg): if isinstance(cb, callbacks.Privmsg) and cb.public: callbacksPrivmsgs += 1 for attr in dir(cb): - if cb.isCommand(attr): + if cb.isCommand(attr) and \ + attr == callbacks.canonicalName(attr): commands.add(attr) commands = list(commands) commands.sort()