소스 검색

Flush write buffer for saving PlayerProfile before closing it.

NuclearW 12 년 전
부모
커밋
4e9322485a
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java

+ 1 - 0
src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java

@@ -452,6 +452,7 @@ public class PlayerProfile {
                 // Write the new file
                 FileWriter out = new FileWriter(location);
                 out.write(writer.toString());
+                out.flush();
                 out.close();
             }
             catch (Exception e) {