mirror of
https://github.com/trainerlord/WorldSystem.git
synced 2025-02-02 23:01:34 +01:00
Fixed critical MySQL bug
This commit is contained in:
parent
6c2f907710
commit
a5c50d988e
3
pom.xml
3
pom.xml
@ -3,7 +3,8 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>de.butzlabben.world</groupId>
|
||||
<artifactId>WorldSystem</artifactId>
|
||||
<version>2.4.6</version>
|
||||
<version>2.4.6.2</version>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.build.number>-</project.build.number>
|
||||
|
@ -226,7 +226,7 @@ public class PluginConfig {
|
||||
}
|
||||
|
||||
public static String getMysqlUser() {
|
||||
return getConfig().getString("database.mysql_settings.user");
|
||||
return getConfig().getString("database.mysql_settings.username");
|
||||
}
|
||||
|
||||
public static String getMysqlPassword() {
|
||||
@ -234,6 +234,6 @@ public class PluginConfig {
|
||||
}
|
||||
|
||||
public static String getMysqlDatabaseName() {
|
||||
return getConfig().getString("database.mysql_settings.host");
|
||||
return getConfig().getString("database.mysql_settings.database");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user