diff --git a/plugin/src/main/java/net/thenextlvl/protect/area/CraftRegionizedArea.java b/plugin/src/main/java/net/thenextlvl/protect/area/CraftRegionizedArea.java index 67ebe0f..4bdf818 100644 --- a/plugin/src/main/java/net/thenextlvl/protect/area/CraftRegionizedArea.java +++ b/plugin/src/main/java/net/thenextlvl/protect/area/CraftRegionizedArea.java @@ -41,7 +41,7 @@ public abstract class CraftRegionizedArea extends CraftArea im public @Nullable UUID owner; private T region; - protected CraftRegionizedArea(File schematicFolder, @NamePattern String name, World world, T region, int priority) throws IllegalArgumentException { + protected CraftRegionizedArea(File schematicFolder, @NamePattern String name, World world, T region, int priority) { super(name, world, priority); this.schematic = new File(schematicFolder, name + ".schem"); this.region = region;