Skip to content

Commit

Permalink
1.8.2
Browse files Browse the repository at this point in the history
Fixes Checker being placed the wrong way compared to Observers. Resolves #24
  • Loading branch information
Shnupbups committed May 30, 2022
1 parent b402e2a commit 538f255
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
loader_version=0.14.6

# Mod Properties
mod_version = 1.8.1
mod_version = 1.8.2
maven_group = com.shnupbups
mod_name = redstone-bits
version_meta = fabric-mc1.19
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void onStateReplaced(BlockState state, World world, BlockPos pos, BlockSt

@Override
public BlockState getPlacementState(ItemPlacementContext ctx) {
return this.getDefaultState().with(FACING, ctx.getPlayerLookDirection().getOpposite());
return this.getDefaultState().with(FACING, ctx.getPlayerLookDirection());
}

@Override
Expand Down

0 comments on commit 538f255

Please sign in to comment.