mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +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;
|
String line;
|
||||||
while ((line = reader.readLine()) != null) {
|
while ((line = reader.readLine()) != null) {
|
||||||
if (line.contains("#")) {
|
if (line.contains("#") && !line.contains("User_Password:")) {
|
||||||
temp += line + "\n";
|
temp += line + "\n";
|
||||||
}
|
}
|
||||||
else if (line.contains(":")) {
|
else if (line.contains(":")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user