mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Ignore "#" in SQL passwords.
This commit is contained in:
parent
00918fbdc1
commit
98e5e53fda
@ -76,7 +76,7 @@ public abstract class AutoUpdateConfigLoader extends ConfigLoader {
|
||||
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
if (line.contains("#")) {
|
||||
if (line.contains("#") && !line.contains("User_Password:")) {
|
||||
temp += line + "\n";
|
||||
}
|
||||
else if (line.contains(":")) {
|
||||
|
Loading…
Reference in New Issue
Block a user