From 8fa23e2bf878db5bc704529370908b55bbc50b4f Mon Sep 17 00:00:00 2001 From: Zepalesque <60141811+Zepalesque@users.noreply.github.com> Date: Sat, 25 May 2024 10:58:50 -0400 Subject: [PATCH] fix: Wood *SET fixes number 2 of likely many --- .../java/net/zepalesque/redux/blockset/AetherWoodSet.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/zepalesque/redux/blockset/AetherWoodSet.java b/src/main/java/net/zepalesque/redux/blockset/AetherWoodSet.java index c0d2e211e..5cc5a2477 100644 --- a/src/main/java/net/zepalesque/redux/blockset/AetherWoodSet.java +++ b/src/main/java/net/zepalesque/redux/blockset/AetherWoodSet.java @@ -78,7 +78,7 @@ public DeferredBlock woodWall() { } protected DeferredBlock strippedLogWall(DeferredRegister.Blocks registry, DeferredRegister.Items items, String id, MapColor color, SoundType soundType) { - var block = registry.register(id + this.logSuffix(LangType.ID) + "_wall", () -> new ReduxNaturalWall(Properties.of() + var block = registry.register("stripped_" + id + this.logSuffix(LangType.ID) + "_wall", () -> new ReduxNaturalWall(Properties.of() .mapColor(MapColor.WOOD) .instrument(NoteBlockInstrument.BASS) .ignitedByLava() @@ -94,7 +94,7 @@ public DeferredBlock strippedLogWall() { } protected DeferredBlock strippedWoodWall(DeferredRegister.Blocks registry, DeferredRegister.Items items, String id, MapColor color, SoundType soundType) { - var block = registry.register(id + this.logSuffix(LangType.ID) + "_wall", () -> new ReduxNaturalWall(Properties.of() + var block = registry.register("stripped_" + id + this.woodSuffix(LangType.ID) + "_wall", () -> new ReduxNaturalWall(Properties.of() .mapColor(MapColor.WOOD) .instrument(NoteBlockInstrument.BASS) .ignitedByLava()