Skip to content

Commit

Permalink
Fixed hanging sign crashing on Fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Jan 4, 2025
1 parent a7ea249 commit 97b263d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ public HangingSignBlockEntityBOP(BlockPos pos, BlockState state)
super(pos, state);
}

@Override
public boolean isValidBlockState(BlockState blockState) {
return this.getType().isValid(blockState);
}

@Override
public BlockEntityType<?> getType()
{
Expand Down

0 comments on commit 97b263d

Please sign in to comment.