Fixed typo on admin command message selector

pull/153/head 3.0.2
Matthieu Grieger 2016-06-21 16:15:28 -07:00
parent 7f1b9595c1
commit 377110892a
3 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
MumbleDJ Changelog
==================
### June 21, 2016 -- `v3.0.2`
* Fixed typo on admin command header message selector.
### June 21, 2016 -- `v3.0.1`
* 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.
* Added config.py with some basic configuration options.
* Put placeholder methods within the MusicBot object.
* Add run_bot.py.
* Add run_bot.py.

View File

@ -108,7 +108,7 @@ func SetDefaultConfig() {
viper.SetDefault("commands.help.is_admin", false)
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.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.is_admin", true)

View File

@ -32,7 +32,7 @@ func init() {
services.DJ = DJ
bot.DJ = DJ
DJ.Version = "3.0.1"
DJ.Version = "3.0.2"
logrus.SetLevel(logrus.WarnLevel)
}