From 8287ea3137b6b503b601af9629c341384762a7b3 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Thu, 1 Dec 2022 22:27:20 +0100 Subject: [PATCH] Hotfix: 1.8 Auto Fixer --- .../schematicsystem/commands/SchematicCommand8.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 SchematicSystem_8/src/de/steamwar/schematicsystem/commands/SchematicCommand8.java 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; + } +}