From f219d4411d203a0c8370585dac87a304183b2684 Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Tue, 21 Apr 2020 01:31:59 +0300 Subject: [PATCH] config_template: Move optional cog configs to the bottom --- config_template.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/config_template.py b/config_template.py index 219f099..cf8c45d 100644 --- a/config_template.py +++ b/config_template.py @@ -158,21 +158,6 @@ suspect_ignored_words = [ "osx", ] -# == Only if you want to use cogs.pin == -# Used for the pinboard. Leave empty if you don't wish for a gist pinboard. -github_oauth_token = "" - -# Channels and roles where users can pin messages -allowed_pin_channels = [] -allowed_pin_roles = [] - -# Channel to upload text files while editing list items. (They are cleaned up.) -list_files_channel = 0 - -# == Only if you want to use cogs.lists == -# Channels that are lists that are controlled by the lists cog. -list_channels = [] - # == For cogs.links == links_guide_text = """**Generic starter guides:** Nintendo Homebrew's Guide: @@ -297,3 +282,18 @@ welcome_footer = ( # Line to be hidden in rules hidden_term_line = ' • When you have finished reading all of the rules, send a message in this channel that includes the {0} hex digest of your discord "name#discriminator", and bot will automatically grant you access to the other channels. You can find your "name#discriminator" (your username followed by a ‘#’ and four numbers) under the discord channel list.' + +# == Only if you want to use cogs.pin == +# Used for the pinboard. Leave empty if you don't wish for a gist pinboard. +github_oauth_token = "" + +# Channels and roles where users can pin messages +allowed_pin_channels = [] +allowed_pin_roles = [] + +# Channel to upload text files while editing list items. (They are cleaned up.) +list_files_channel = 0 + +# == Only if you want to use cogs.lists == +# Channels that are lists that are controlled by the lists cog. +list_channels = []