Fix creating language file on first startup
This commit is contained in:
		@@ -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();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user