12
1

Omni-Replay #280

Manuell gemergt
Lixfel hat 15 Commits von spectate2.0 nach master 2021-08-27 22:12:03 +02:00 zusammengeführt
Nur Änderungen aus Commit 74565853bb werden angezeigt - Alle Commits anzeigen

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);