Fix LaufbauLazyInit
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-08-27 15:05:25 +02:00
Ursprung f6db278214
Commit 8b9978102d

Datei anzeigen

@ -1,22 +1,24 @@
package de.steamwar.bausystem.features.slaves.laufbau; package de.steamwar.bausystem.features.slaves.laufbau;
import de.steamwar.bausystem.features.slaves.laufbau.boundingboxes.*; import de.steamwar.bausystem.features.slaves.laufbau.boundingboxes.*;
import lombok.experimental.UtilityClass;
@UtilityClass
public class LaufbauLazyInit { public class LaufbauLazyInit {
public static void init() { public static void init() {
} }
static { static {
new BellBoundingBox(); new BellBoundingBox().enable();
new BrewingStandBoundingBox(); new BrewingStandBoundingBox().enable();
new ChorusPlantBoundingBox(); new ChorusPlantBoundingBox().enable();
new FencesBoundingBox(); new FencesBoundingBox().enable();
new GrindstoneBoundingBox(); new GrindstoneBoundingBox().enable();
new HopperBoundingBox(); new HopperBoundingBox().enable();
new IronBarBoundingBox(); new IronBarBoundingBox().enable();
new LanternBoundingBox(); new LanternBoundingBox().enable();
new StairBoundingBox(); new StairBoundingBox().enable();
new WallBoundingBox(); new WallBoundingBox().enable();
} }
} }