diff --git a/SchematicSystem_8/src/de/steamwar/schematicsystem/commands/SchematicCommand8.java b/SchematicSystem_8/src/de/steamwar/schematicsystem/commands/SchematicCommand8.java new file mode 100644 index 0000000..28b5e3e --- /dev/null +++ b/SchematicSystem_8/src/de/steamwar/schematicsystem/commands/SchematicCommand8.java @@ -0,0 +1,13 @@ +package de.steamwar.schematicsystem.commands; + +import com.sk89q.worldedit.extent.clipboard.Clipboard; +import de.steamwar.schematicsystem.CheckSchemType; +import de.steamwar.schematicsystem.autocheck.AutoCheckerResult; + +public class SchematicCommand8 implements SchematicCommand.ISchematicCommand { + + @Override + public Clipboard fixClipboard(Clipboard clipboard, AutoCheckerResult result, CheckSchemType type) throws Exception { + return null; + } +}