1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-23 09:21:25 +02:00

Ignore "#" in SQL passwords.

This commit is contained in:
GJ 2013-09-30 08:36:32 -04:00
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(":")) {