diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/slaves/laufbau/LaufbauLazyInit.java b/BauSystem_Main/src/de/steamwar/bausystem/features/slaves/laufbau/LaufbauLazyInit.java index d57ce2b6..a4ac08ab 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/slaves/laufbau/LaufbauLazyInit.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/slaves/laufbau/LaufbauLazyInit.java @@ -1,22 +1,24 @@ package de.steamwar.bausystem.features.slaves.laufbau; import de.steamwar.bausystem.features.slaves.laufbau.boundingboxes.*; +import lombok.experimental.UtilityClass; +@UtilityClass public class LaufbauLazyInit { public static void init() { } static { - new BellBoundingBox(); - new BrewingStandBoundingBox(); - new ChorusPlantBoundingBox(); - new FencesBoundingBox(); - new GrindstoneBoundingBox(); - new HopperBoundingBox(); - new IronBarBoundingBox(); - new LanternBoundingBox(); - new StairBoundingBox(); - new WallBoundingBox(); + new BellBoundingBox().enable(); + new BrewingStandBoundingBox().enable(); + new ChorusPlantBoundingBox().enable(); + new FencesBoundingBox().enable(); + new GrindstoneBoundingBox().enable(); + new HopperBoundingBox().enable(); + new IronBarBoundingBox().enable(); + new LanternBoundingBox().enable(); + new StairBoundingBox().enable(); + new WallBoundingBox().enable(); } }