diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/region/ResetCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/region/ResetCommand.java index 16a879b4..d17fadef 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/region/ResetCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/region/ResetCommand.java @@ -62,8 +62,8 @@ public class ResetCommand extends SWCommand { public void schematicResetCommand(@Guard Player p, SchematicNode node) { Region region = regionCheck(p); if (region == null) return; - if (node == null) { - BauSystem.MESSAGE.send("REGION_RESET_NO_SCHEM", p); + if (node.isDir()) { + BauSystem.MESSAGE.send("ONLY_SCHEMS", p); return; } try {