diff --git a/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java b/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java index 1cea31f..92d19a9 100644 --- a/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java +++ b/FightSystem_Main/src/de/steamwar/fightsystem/record/FileRecorder.java @@ -35,7 +35,7 @@ public class FileRecorder extends Recorder { public FileRecorder(){ super(); - File file = new File(FightSystem.getPlugin().getDataFolder(), "recording"); + File file = new File(FightSystem.getPlugin().getDataFolder(), "recording.recording"); try{ file.createNewFile(); outputStream = new DataOutputStream(new GZIPOutputStream(new FileOutputStream(file), 4096));