diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/BlockRegistry.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/BlockRegistry.java index f8be06c45..49c6ab0b4 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/BlockRegistry.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/BlockRegistry.java @@ -13,6 +13,9 @@ public abstract class BlockRegistry { public BlockRegistry(@NonNull final Class type, final T... preInitializedItems) { this.type = type; + for (final T preInitializedItem : preInitializedItems) { + this.addMapping(getPlotBlock(preInitializedItem), preInitializedItem); + } } public final void addMapping(@NonNull final PlotBlock plotBlock, @NonNull final T t) {