SteamWar/SpigotCore
Archiviert
13
0

Saving schematics in database #13

Geschlossen
Lixfel möchte 5 Commits von schematic nach master mergen
Nur Änderungen aus Commit d0a0a3a53d werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -147,6 +147,10 @@ public class Schematic {
updateDB();
}
public boolean availible(){
return Core.getVersion() > 12 || !schemFormat;
}
public Clipboard load() throws WrongVersionException, IOException, NoClipboardException {
if(Core.getVersion() <= 12 && schemFormat)
throw new WrongVersionException();