diff --git a/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java b/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java index 182a2bd..978ae8b 100644 --- a/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java +++ b/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java @@ -19,7 +19,7 @@ public class FileRecorder extends Recorder { File file = new File(FightSystem.getPlugin().getDataFolder(), "recording"); try{ file.createNewFile(); - outputStream = new DataOutputStream(new GZIPOutputStream(new FileOutputStream(file))); + outputStream = new DataOutputStream(new GZIPOutputStream(new FileOutputStream(file), 4096)); }catch(IOException e){ throw new SecurityException("Could not open file", e); }