Added Display Name To Standard Bogey Style

This commit is contained in:
Rabbitminers 2023-04-30 20:59:50 +01:00
parent 112306d5d4
commit 411ec36f57

View file

@ -13,6 +13,7 @@ import com.tterrag.registrate.util.entry.BlockEntry;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.TranslatableComponent;
import net.minecraft.resources.ResourceLocation;
import java.util.HashMap;
@ -27,6 +28,7 @@ public class AllBogeyStyles {
public static BogeyStyle STANDARD = create("standard")
.commonRenderer(CommonStandardBogeyRenderer::new)
.displayName(new TranslatableComponent("create.bogeys.styles.standard"))
.size(BogeySizes.SMALL, SmallStandardBogeyRenderer::new, AllBlocks.SMALL_BOGEY)
.size(BogeySizes.LARGE, LargeStandardBogeyRenderer::new, AllBlocks.LARGE_BOGEY)
.build();