From 4360b0381a2e34ad50e39381be1e0f1bcdf0d379 Mon Sep 17 00:00:00 2001 From: Justin Parsell Date: Tue, 27 Apr 2021 21:34:27 -0400 Subject: [PATCH] refactor --- src/main/java/me/parsell/glowstonewire/core/glowBlocks.java | 2 +- src/main/java/me/parsell/glowstonewire/core/glowItems.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/parsell/glowstonewire/core/glowBlocks.java b/src/main/java/me/parsell/glowstonewire/core/glowBlocks.java index 1528eaa..e6a1647 100644 --- a/src/main/java/me/parsell/glowstonewire/core/glowBlocks.java +++ b/src/main/java/me/parsell/glowstonewire/core/glowBlocks.java @@ -11,7 +11,7 @@ public class glowBlocks { public static final Block GLOWSTONEWIRE = new GlowstoneWireBlock(FabricBlockSettings.of(Material.SUPPORTED).breakInstantly().noCollision().luminance(8)); public static void init(){ - Registry.register(Registry.BLOCK, new Identifier("glowstonedust", "glowstone_wire"), GLOWSTONEWIRE); + Registry.register(Registry.BLOCK, new Identifier("glowstonewire", "glowstone_wire"), GLOWSTONEWIRE); } } diff --git a/src/main/java/me/parsell/glowstonewire/core/glowItems.java b/src/main/java/me/parsell/glowstonewire/core/glowItems.java index 1938f88..d73ee64 100644 --- a/src/main/java/me/parsell/glowstonewire/core/glowItems.java +++ b/src/main/java/me/parsell/glowstonewire/core/glowItems.java @@ -8,6 +8,6 @@ import net.minecraft.util.registry.Registry; public class glowItems { public static void init(){ - Registry.register(Registry.ITEM, new Identifier("glowstonedust", "glowstone_wire"), new BlockItem(glowBlocks.GLOWSTONEWIRE, new FabricItemSettings().group(ItemGroup.MISC))); + Registry.register(Registry.ITEM, new Identifier("glowstonewire", "glowstone_wire"), new BlockItem(glowBlocks.GLOWSTONEWIRE, new FabricItemSettings().group(ItemGroup.MISC))); }; }