mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 01:39:54 +01:00
20 lines
1.1 KiB
Diff
20 lines
1.1 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
||
|
Date: Sat, 12 Nov 2016 23:25:22 -0600
|
||
|
Subject: [PATCH] Filter bad tile entity nbt data from falling blocks
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
|
||
|
index 561b8d6fcf4d511fb026bcc2c02054e56589d0b7..97b2d12713d2245f1621d3ade5b5655b5897cbf4 100644
|
||
|
--- a/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
|
||
|
+++ b/src/main/java/net/minecraft/world/entity/item/FallingBlockEntity.java
|
||
|
@@ -331,7 +331,7 @@ public class FallingBlockEntity extends Entity {
|
||
|
this.dropItem = nbt.getBoolean("DropItem");
|
||
|
}
|
||
|
|
||
|
- if (nbt.contains("TileEntityData", 10)) {
|
||
|
+ if (nbt.contains("TileEntityData", 10) && !(this.level.paperConfig().entities.spawning.filterBadTileEntityNbtFromFallingBlocks && this.blockState.getBlock() instanceof net.minecraft.world.level.block.GameMasterBlock)) {
|
||
|
this.blockData = nbt.getCompound("TileEntityData");
|
||
|
}
|
||
|
|