SteamWar/FightSystem
Archiviert
13
1
Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2021-08-21 21:14:37 +02:00
Ursprung 20f3b609cb
Commit 74565853bb

Datei anzeigen

@ -22,10 +22,7 @@ package de.steamwar.fightsystem.record;
import de.steamwar.fightsystem.Config;
import org.bukkit.Bukkit;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import java.util.logging.Level;
@ -37,11 +34,13 @@ public class FileSource extends PacketSource {
if(Config.replayserver())
return;
InputStream input = de.steamwar.sql.Fight.getReplay(Config.ReplayID);
try {
Files.copy(
de.steamwar.sql.Fight.getReplay(Config.ReplayID),
input,
FileRecorder.getFile().toPath(),
StandardCopyOption.REPLACE_EXISTING);
input.close();
new FileSource(FileRecorder.getFile());
} catch (IOException e) {
throw new SecurityException("Could not start replay", e);