Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEXT_RELEASE_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Disabled fake player creator for < 1.16.5 due to a lack of Library Loader support on legacy versions.
- Fix support for Paper 26.2. Thanks, phwog, for the bug report and the suggested fix.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ private DynamicType.Builder<?> addPutBlockMethod(DynamicType.Builder<?> builder)
.withMethodCall(invoke(methodLocationGetY).onField(FIELD_LOCATION))
.withMethodCall(invoke(methodLocationGetZ).onField(FIELD_LOCATION)))
.withField(FIELD_BLOCK_DATA)
.with(1)));
.with(3)));
}

private DynamicType.Builder<?> addUpdateMultipleFacingMethod(DynamicType.Builder<?> builder)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void putBlock(Location loc)

craftWorld
.getHandle()
.setBlock(BlockPos.containing(loc.getX(), loc.getY(), loc.getZ()), blockData, 1);
.setBlock(BlockPos.containing(loc.getX(), loc.getY(), loc.getZ()), blockData, 3);
}

private void updateCraftBlockDataMultipleFacing()
Expand Down