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()