craftbukkit/nms-patches/net/minecraft/network/protocol/game/PacketPlayOutMultiBlockChange.patch

12 lines
826 B
Diff
Raw Normal View History

2021-03-16 09:00:00 +11:00
--- a/net/minecraft/network/protocol/game/PacketPlayOutMultiBlockChange.java
+++ b/net/minecraft/network/protocol/game/PacketPlayOutMultiBlockChange.java
2021-06-11 15:00:00 +10:00
@@ -32,7 +32,7 @@
short short0 = (Short) shortiterator.next();
2021-06-11 15:00:00 +10:00
this.positions[j] = short0;
2021-11-22 09:00:00 +11:00
- this.states[j] = chunksection.getBlockState(SectionPosition.sectionRelativeX(short0), SectionPosition.sectionRelativeY(short0), SectionPosition.sectionRelativeZ(short0));
+ this.states[j] = (chunksection != null) ? chunksection.getBlockState(SectionPosition.sectionRelativeX(short0), SectionPosition.sectionRelativeY(short0), SectionPosition.sectionRelativeZ(short0)) : net.minecraft.world.level.block.Blocks.AIR.defaultBlockState(); // CraftBukkit - SPIGOT-6076, Mojang bug when empty chunk section notified
}
}