Skip to content

Commit

Permalink
fix persisting CREATOR/NOTIFIER
Browse files Browse the repository at this point in the history
  • Loading branch information
Faithcaio authored and ItsDoot committed Jul 10, 2021
1 parent a917e6d commit 06cf7bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public abstract class ChunkSerializerMixin_Tracker {
return;
}
final LevelChunkBridge chunk = (LevelChunkBridge) param1;
if (!chunk.bridge$getTrackedIntPlayerPositions().isEmpty()) {
if (!chunk.bridge$getTrackedShortPlayerPositions().isEmpty() || !chunk.bridge$getTrackedIntPlayerPositions().isEmpty()) {
final CompoundTag level = (CompoundTag) cir.getReturnValue().get("Level");
final CompoundTag trackedNbt = new CompoundTag();
final ListTag positions = new ListTag();
Expand Down

0 comments on commit 06cf7bc

Please sign in to comment.