Skip to content

Commit

Permalink
24w38a
Browse files Browse the repository at this point in the history
  • Loading branch information
gnembon committed Sep 18, 2024
1 parent 29d7f49 commit b32de10
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 @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check https://fabricmc.net/develop/
minecraft_version=24w37a
minecraft_version=24w38a
loader_version=0.16.5
jsr305_version=3.0.2
fabric_version=0.102.0+1.21
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/helpers/RedstoneWireTurbo.java
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ public void updateNeighborShapes(Level level, BlockPos pos, BlockState state) {
BlockPos neighborPos = pos.relative(dir);
BlockState neighborState = level.getBlockState(neighborPos);

BlockState newState = neighborState.updateShape(dir.getOpposite(), state, level, neighborPos, pos);
BlockState newState = neighborState.updateShape(level, level, neighborPos, dir.getOpposite(), pos, state, level.getRandom());
Block.updateOrDestroy(neighborState, newState, level, neighborPos, Block.UPDATE_CLIENTS);
}
}
Expand Down

0 comments on commit b32de10

Please sign in to comment.