SteamWar/SpigotCore
Archiviert
13
0

Add Back missing Function
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: Chaoscaot <chaoscaot444@gmail.com>
Dieser Commit ist enthalten in:
Chaoscaot 2021-11-21 10:23:36 +01:00
Ursprung 745ac401bb
Commit bd6e9a0246

Datei anzeigen

@ -522,6 +522,14 @@ public class SchematicNode {
schemFormat = newFormat;
}
public static Clipboard clipboardFromStream(InputStream is, boolean schemFormat) {
try {
return WorldEditWrapper.impl.getClipboard(is, schemFormat);
} catch (IOException e) {
throw new SecurityException("Could not read schem", e);
}
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof SchematicNode))