mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-17 06:48:23 +01:00
Expand NBT filtering from last commit
cc GH-478
This commit is contained in:
parent
513118af55
commit
6b146ebec2
1 changed files with 39 additions and 4 deletions
|
@ -4,20 +4,55 @@ Date: Sat, 12 Nov 2016 23:25:22 -0600
|
||||||
Subject: [PATCH] Filter bad data from ArmorStand and SpawnEgg items
|
Subject: [PATCH] Filter bad data from ArmorStand and SpawnEgg items
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
@@ -0,0 +0,0 @@ public class PaperWorldConfig {
|
||||||
|
private void removeCorruptTEs() {
|
||||||
|
removeCorruptTEs = getBoolean("remove-corrupt-tile-entities", false);
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ public boolean filterNBTFromSpawnEgg = true;
|
||||||
|
+ private void fitlerNBTFromSpawnEgg() {
|
||||||
|
+ filterNBTFromSpawnEgg = getBoolean("filter-nbt-data-from-spawn-eggs-and-related", true);
|
||||||
|
+ if (!filterNBTFromSpawnEgg) {
|
||||||
|
+ Bukkit.getLogger().warning("Spawn Egg and Armor Stand NBT filtering disabled, this is a potential security risk");
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/EntityFallingBlock.java b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
||||||
|
@@ -0,0 +0,0 @@ public class EntityFallingBlock extends Entity {
|
||||||
|
this.block = Block.getById(nbttagcompound.getByte("Tile") & 255).fromLegacyData(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Paper start - Block FallingBlocks with Command Blocks
|
||||||
|
+ if (this.world.paperConfig.filterNBTFromSpawnEgg && this.block.getBlock() == Blocks.COMMAND_BLOCK) {
|
||||||
|
+ this.block = Blocks.STONE.getBlockData();
|
||||||
|
+ }
|
||||||
|
+ // Paper end
|
||||||
|
+
|
||||||
|
this.ticksLived = nbttagcompound.getInt("Time");
|
||||||
|
Block block = this.block.getBlock();
|
||||||
|
|
||||||
diff --git a/src/main/java/net/minecraft/server/ItemMonsterEgg.java b/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
diff --git a/src/main/java/net/minecraft/server/ItemMonsterEgg.java b/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
--- a/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
--- a/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
||||||
+++ b/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
+++ b/src/main/java/net/minecraft/server/ItemMonsterEgg.java
|
||||||
@@ -0,0 +0,0 @@ public class ItemMonsterEgg extends Item {
|
@@ -0,0 +0,0 @@ public class ItemMonsterEgg extends Item {
|
||||||
|
|
||||||
NBTTagCompound nbttagcompound1 = entity.e(new NBTTagCompound());
|
NBTTagCompound nbttagcompound1 = entity.e(new NBTTagCompound());
|
||||||
UUID uuid = entity.getUniqueID();
|
UUID uuid = entity.getUniqueID();
|
||||||
-
|
|
||||||
- nbttagcompound1.a(nbttagcompound.getCompound("EntityTag"));
|
- nbttagcompound1.a(nbttagcompound.getCompound("EntityTag"));
|
||||||
+ // Paper start - Filter out position and motion information
|
+ // Paper start - Filter out position and motion information
|
||||||
+ final NBTTagCompound entityTag = nbttagcompound.getCompound("EntityTag");
|
+ final NBTTagCompound entityTag = nbttagcompound.getCompound("EntityTag");
|
||||||
+ entityTag.remove("Pos");
|
+ if (world.paperConfig.filterNBTFromSpawnEgg) {
|
||||||
+ entityTag.remove("Motion");
|
+ entityTag.remove("Pos");
|
||||||
|
+ entityTag.remove("Motion");
|
||||||
|
+ }
|
||||||
+ nbttagcompound1.a(entityTag);
|
+ nbttagcompound1.a(entityTag);
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
entity.a(uuid);
|
entity.a(uuid);
|
||||||
|
|
Loading…
Reference in a new issue