Fix creating language file on first startup
This commit is contained in:
parent
8b6b6d3aa1
commit
b5072ca886
@ -138,9 +138,11 @@ public class LangLoader {
|
|||||||
}
|
}
|
||||||
bw.newLine();
|
bw.newLine();
|
||||||
// Output any custom language strings the user had
|
// Output any custom language strings the user had
|
||||||
for (String key : curLang.keySet()) {
|
if(curLang != null) {
|
||||||
bw.write(key + "=" + curLang.get(key));
|
for (String key : curLang.keySet()) {
|
||||||
bw.newLine();
|
bw.write(key + "=" + curLang.get(key));
|
||||||
|
bw.newLine();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bw.close();
|
bw.close();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user