Fix BauweltMemberConfig
Dieser Commit ist enthalten in:
Ursprung
ad05babe45
Commit
d239f2cbaa
@ -42,7 +42,7 @@ public final class BauweltMemberConfig {
|
|||||||
public static String getPlayerConfig(int id) {
|
public static String getPlayerConfig(int id) {
|
||||||
ResultSet config = SQL.select("SELECT * FROM MemberConfig WHERE UserID = ?", id);
|
ResultSet config = SQL.select("SELECT * FROM MemberConfig WHERE UserID = ?", id);
|
||||||
try {
|
try {
|
||||||
if (config == null || !config.next()) {
|
if (!config.next()) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return config.getString("BauConfig");
|
return config.getString("BauConfig");
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren