Merge branch 'master' into i18n
This commit is contained in:
commit
2642970bea
3 changed files with 18 additions and 13 deletions
|
|
@ -1,11 +1,15 @@
|
||||||
{
|
{
|
||||||
"Owners":
|
"Owners": [
|
||||||
[],
|
|
||||||
"Database":{"IP":"",
|
|
||||||
|
],
|
||||||
|
"Database": {
|
||||||
|
"IP":"",
|
||||||
"Port": 6775,
|
"Port": 6775,
|
||||||
"DBName": "",
|
"DBName": "",
|
||||||
"Username": "",
|
"Username": "",
|
||||||
"Password": ""},
|
"Password": ""
|
||||||
|
},
|
||||||
"Tokens": {
|
"Tokens": {
|
||||||
"BotToken": "",
|
"BotToken": "",
|
||||||
"Giphy": "",
|
"Giphy": "",
|
||||||
|
|
@ -13,14 +17,15 @@
|
||||||
"MythicalBotList": "",
|
"MythicalBotList": "",
|
||||||
"BotsForDiscord": "",
|
"BotsForDiscord": "",
|
||||||
"DiscordBotList": "",
|
"DiscordBotList": "",
|
||||||
"DiscordBestBots": "",
|
|
||||||
"DiscordBoats": "",
|
"DiscordBoats": "",
|
||||||
"YetAnotherBotList": "",
|
"YetAnotherBotList": "",
|
||||||
"DiscordExtremeList": "",
|
"DiscordExtremeList": "",
|
||||||
"DiscordBotReviews": "",
|
"DiscordBotReviews": "",
|
||||||
"DiscordBots": "",
|
"DiscordBots": "",
|
||||||
"BotListSpace": "",
|
"BotListSpace": "",
|
||||||
"DiscordBots2": ""
|
"DiscordBots2": "",
|
||||||
|
"CloudList": "",
|
||||||
|
"Arcane": ""
|
||||||
},
|
},
|
||||||
"Clyde": ""
|
"Clyde": ""
|
||||||
}
|
}
|
||||||
|
|
|
||||||
10
pom.xml
10
pom.xml
|
|
@ -5,7 +5,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>Hadder</groupId>
|
<groupId>Hadder</groupId>
|
||||||
<artifactId>Hadder</artifactId>
|
<artifactId>Hadder</artifactId>
|
||||||
<version>1.3.14</version>
|
<version>1.3.15</version>
|
||||||
<name>Hadder</name>
|
<name>Hadder</name>
|
||||||
<inceptionYear>2019</inceptionYear>
|
<inceptionYear>2019</inceptionYear>
|
||||||
<description>Hadder is a multi-purpose Discord bot.</description>
|
<description>Hadder is a multi-purpose Discord bot.</description>
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
<url>https://bigbotnetwork.com/</url>
|
<url>https://bigbotnetwork.com/</url>
|
||||||
<timezone>Europe/Berlin</timezone>
|
<timezone>Europe/Berlin</timezone>
|
||||||
<properties>
|
<properties>
|
||||||
<picUrl>https://cdn.discordapp.com/avatars/477141528981012511/a_ba4bd8e5b381874edcd06a68d1acd3aa.gif</picUrl>
|
<picUrl>https://cdn.discordapp.com/avatars/401817301919465482/a_f81bd03e3862de579dec59241714d86d.gif</picUrl>
|
||||||
</properties>
|
</properties>
|
||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.dv8tion</groupId>
|
<groupId>net.dv8tion</groupId>
|
||||||
<artifactId>JDA</artifactId>
|
<artifactId>JDA</artifactId>
|
||||||
<version>4.1.1_157</version>
|
<version>4.1.1_165</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.json</groupId>
|
<groupId>org.json</groupId>
|
||||||
|
|
@ -91,12 +91,12 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.kohsuke</groupId>
|
<groupId>org.kohsuke</groupId>
|
||||||
<artifactId>github-api</artifactId>
|
<artifactId>github-api</artifactId>
|
||||||
<version>1.112</version>
|
<version>1.114</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.sedmelluq</groupId>
|
<groupId>com.sedmelluq</groupId>
|
||||||
<artifactId>lavaplayer</artifactId>
|
<artifactId>lavaplayer</artifactId>
|
||||||
<version>1.3.49</version>
|
<version>1.3.50</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
|
|
|
||||||
|
|
@ -49,8 +49,8 @@ public class LanguageCommand implements Command {
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO,
|
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO,
|
||||||
"List",
|
"commands.settings.language.error.title", "",
|
||||||
"`de`, `en`, `es`, `fr`, `ru`, `tr`, `zh`")
|
"commands.settings.language.error.description", "`de`, `en`, `es`, `fr`, `ru`, `tr`, `zh`")
|
||||||
.build()).queue();
|
.build()).queue();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue