diff --git a/botconfig.py.example b/botconfig.py.example index 383680d..1040758 100644 --- a/botconfig.py.example +++ b/botconfig.py.example @@ -24,6 +24,8 @@ SERVER_PASS = "{account}:{password}" OWNERS = ("unaffiliated/wolfbot_admin1",) # The comma is required at the end if there is only one owner. OWNERS_ACCOUNTS = ("1owner_acc",) +#RULES = "{0} channel rules: https://werewolf.chat/Freenode:Rules".format(botconfig.CHANNEL) + ALLOWED_NORMAL_MODE_COMMANDS = [] # Debug mode commands to be allowed in normal mode OWNERS_ONLY_COMMANDS = [] # Commands that should only be allowed for owners, regardless of their original permissions diff --git a/src/settings.py b/src/settings.py index fabac9d..4bb3ec4 100644 --- a/src/settings.py +++ b/src/settings.py @@ -320,7 +320,7 @@ FORTUNE_CHANCE = 1/25 ALL_FLAGS = frozenset("AaDdFjms") -RULES = (botconfig.CHANNEL + " channel rules: http://wolf.xnrand.com/rules") +RULES = "To configure this command, the bot administrator should uncomment and modify RULES in botconfig.py." GRAVEYARD_LOCK = threading.RLock() WARNING_LOCK = threading.RLock()