Skip to content

Commit

Permalink
fix: Set default facing in WaystoneBlockBase as well #913
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Oct 23, 2024
1 parent 7bee26f commit ddc2da8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ public abstract class WaystoneBlockBase extends BaseEntityBlock implements Simpl

public WaystoneBlockBase(Properties properties) {
super(properties.pushReaction(PushReaction.BLOCK));
this.registerDefaultState(this.stateDefinition.any().setValue(WATERLOGGED, false).setValue(ORIGIN, WaystoneOrigin.UNKNOWN));
this.registerDefaultState(this.stateDefinition.any()
.setValue(WATERLOGGED, false)
.setValue(ORIGIN, WaystoneOrigin.UNKNOWN)
.setValue(FACING, Direction.NORTH));
}

@Override
Expand Down

0 comments on commit ddc2da8

Please sign in to comment.