From f12dab8ac6b34290e5ca18c402bf9eecfddcff13 Mon Sep 17 00:00:00 2001 From: MineRobber___T Date: Wed, 30 Jan 2019 20:53:53 -0500 Subject: [PATCH] Remove !admin alias This will avoid the inevitable collision when I attempt to use admin commands on minerbot and it sends a message to the admins. --- plugins/admins.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/admins.py b/plugins/admins.py index 744578c..d2ce50b 100644 --- a/plugins/admins.py +++ b/plugins/admins.py @@ -5,7 +5,6 @@ "Use this when you don't have a specific action item for the admins but just want to " "leave them a note. Feel free to leave them a nice message.") -@p.register('!admin', help_text='alias of !admins') @p.register('!admins', help_text=help_text) def admins(msg): output = '{} in {} says "{}"'.format(msg.nick, msg.channel, msg.arg)