File tree 2 files changed +4
-4
lines changed
src/main/kotlin/gg/obsidian/discordbridge
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ plugins {
23
23
apply plugin : ' kotlin'
24
24
25
25
group = ' gg.obsidian'
26
- version = ' 1.7.0 '
26
+ version = ' 1.7.1 '
27
27
description = """ Bridge chat between Minecraft and Discord"""
28
28
ext. url = ' https://github.com/the-obsidian/DiscordBridge'
29
29
Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ class Configuration(val plugin: Plugin) {
38
38
SERVER_ID = plugin.config.getString(" settings.server-id" )
39
39
CHANNEL = plugin.config.getString(" settings.channel" )
40
40
USERNAME = plugin.config.getString(" settings.username" )
41
- EMAIL = plugin.config.getString(" settings.email" )
42
- PASSWORD = plugin.config.getString(" settings.password" )
43
- TOKEN = plugin.config.getString(" settings.token" )
41
+ EMAIL = plugin.config.getString(" settings.email" , " " )
42
+ PASSWORD = plugin.config.getString(" settings.password" , " " )
43
+ TOKEN = plugin.config.getString(" settings.token" , " " )
44
44
DEBUG = plugin.config.getBoolean(" settings.debug" , false )
45
45
RELAY_CANCELLED_MESSAGES = plugin.config.getBoolean(" settings.relay_cancelled_messages" , true )
46
46
You can’t perform that action at this time.
0 commit comments