Skip to content

Commit

Permalink
fix: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed May 25, 2024
1 parent c308005 commit 5b55275
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public DeferredBlock<AetherLogBlock> log() {

@Override
protected DeferredBlock<AetherLogBlock> strippedLog(DeferredRegister.Blocks registry, DeferredRegister.Items items, String id, MapColor color, SoundType soundType) {
var block = registry.register(id + "_stripped" + this.logSuffix(LangType.ID), () -> new AetherLogBlock(Properties.of()
var block = registry.register("stripped_" + id + this.logSuffix(LangType.ID), () -> new AetherLogBlock(Properties.of()
.mapColor(color)
.instrument(NoteBlockInstrument.BASS)
.strength(2.0F)
Expand Down Expand Up @@ -216,7 +216,7 @@ public DeferredBlock<NaturalLog> wood() {

@Override
protected DeferredBlock<NaturalLog> strippedWood(DeferredRegister.Blocks registry, DeferredRegister.Items items, String id, MapColor color, SoundType soundType) {
var block = registry.register(id + "_stripped" + this.woodSuffix(LangType.ID), () -> new NaturalLog(Properties.of()
var block = registry.register("stripped_" + id + this.woodSuffix(LangType.ID), () -> new NaturalLog(Properties.of()
.mapColor(color)
.instrument(NoteBlockInstrument.BASS)
.strength(2.0F)
Expand Down Expand Up @@ -560,7 +560,7 @@ public DeferredHolder<BlockEntityType<?>, BlockEntityType<? extends ZenithHangin
@Override
protected BlockSetType setType(String id, SoundType sound) {
return BlockSetType.register(new BlockSetType(
id,
Redux.MODID + ":" + id,
true,
true,
true,
Expand All @@ -585,7 +585,7 @@ public BlockSetType setType() {
@Override
protected WoodType woodType(String id, BlockSetType type, SoundType sound) {
return WoodType.register(new WoodType(
id,
Redux.MODID + ":" + id,
type,
sound,
SoundType.HANGING_SIGN,
Expand Down

0 comments on commit 5b55275

Please sign in to comment.