From 8b9978102de4f284e6e939523b6d6b92d9b25640 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Sat, 27 Aug 2022 15:05:25 +0200 Subject: [PATCH] Fix LaufbauLazyInit Signed-off-by: yoyosource --- .../slaves/laufbau/LaufbauLazyInit.java | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) 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(); } }