Fixed typo on admin command message selector
This commit is contained in:
parent
7f1b9595c1
commit
377110892a
|
@ -1,6 +1,9 @@
|
||||||
MumbleDJ Changelog
|
MumbleDJ Changelog
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
### June 21, 2016 -- `v3.0.2`
|
||||||
|
* Fixed typo on admin command header message selector.
|
||||||
|
|
||||||
### June 21, 2016 -- `v3.0.1`
|
### June 21, 2016 -- `v3.0.1`
|
||||||
* Added all strings that are output by commands to `config.yaml` for easier translation and tweaking.
|
* Added all strings that are output by commands to `config.yaml` for easier translation and tweaking.
|
||||||
|
|
||||||
|
@ -354,4 +357,4 @@ to the root of the server instead.
|
||||||
* mumble-music-bot repository created.
|
* mumble-music-bot repository created.
|
||||||
* Added config.py with some basic configuration options.
|
* Added config.py with some basic configuration options.
|
||||||
* Put placeholder methods within the MusicBot object.
|
* Put placeholder methods within the MusicBot object.
|
||||||
* Add run_bot.py.
|
* Add run_bot.py.
|
||||||
|
|
|
@ -108,7 +108,7 @@ func SetDefaultConfig() {
|
||||||
viper.SetDefault("commands.help.is_admin", false)
|
viper.SetDefault("commands.help.is_admin", false)
|
||||||
viper.SetDefault("commands.help.description", "Outputs this list of commands.")
|
viper.SetDefault("commands.help.description", "Outputs this list of commands.")
|
||||||
viper.SetDefault("commands.help.messages.commands_header", "<br><b>Commands:</b><br>")
|
viper.SetDefault("commands.help.messages.commands_header", "<br><b>Commands:</b><br>")
|
||||||
viper.SetDefault("commands.help.messages.admin_commands.header", "<br><b>Admin Commands:</b><br>")
|
viper.SetDefault("commands.help.messages.admin_commands_header", "<br><b>Admin Commands:</b><br>")
|
||||||
|
|
||||||
viper.SetDefault("commands.joinme.aliases", []string{"joinme", "join"})
|
viper.SetDefault("commands.joinme.aliases", []string{"joinme", "join"})
|
||||||
viper.SetDefault("commands.joinme.is_admin", true)
|
viper.SetDefault("commands.joinme.is_admin", true)
|
||||||
|
|
Reference in a new issue