2018-08-06 01:46:43 +02:00
|
|
|
From 69ebaca79e2c169b0db6b464beaf1b8a384ae0ed Mon Sep 17 00:00:00 2001
|
2016-11-13 06:29:32 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Sat, 12 Nov 2016 23:25:22 -0600
|
|
|
|
Subject: [PATCH] Filter bad data from ArmorStand and SpawnEgg items
|
|
|
|
|
|
|
|
|
2016-11-14 02:36:23 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-08-06 01:46:43 +02:00
|
|
|
index 4d0f2051aa..872001d041 100644
|
2016-11-14 02:36:23 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -3,6 +3,7 @@ package com.destroystokyo.paper;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
|
|
|
+import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
|
|
|
import org.spigotmc.SpigotWorldConfig;
|
|
|
|
|
2018-07-24 02:24:44 +02:00
|
|
|
@@ -325,4 +326,12 @@ public class PaperWorldConfig {
|
2016-11-14 02:36:23 +01:00
|
|
|
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
|
2018-08-06 01:46:43 +02:00
|
|
|
index 33bc46b054..4e1b74ebe4 100644
|
2016-11-14 02:36:23 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
2018-07-16 22:08:09 +02:00
|
|
|
@@ -228,6 +228,15 @@ public class EntityFallingBlock extends Entity {
|
2016-11-14 02:36:23 +01:00
|
|
|
|
2018-07-16 22:08:09 +02:00
|
|
|
protected void a(NBTTagCompound nbttagcompound) {
|
|
|
|
this.block = GameProfileSerializer.d(nbttagcompound.getCompound("BlockState"));
|
|
|
|
+
|
2016-11-14 02:36:23 +01:00
|
|
|
+ // Paper start - Block FallingBlocks with Command Blocks
|
2016-11-14 03:20:14 +01:00
|
|
|
+ // Check mappings on update - dc = "repeating_command_block" - dd = "chain_command_block"
|
|
|
|
+ final Block b = this.block.getBlock();
|
2018-07-16 22:08:09 +02:00
|
|
|
+ if (this.world.paperConfig.filterNBTFromSpawnEgg && (b == Blocks.COMMAND_BLOCK || b == Blocks.REPEATING_COMMAND_BLOCK || b == Blocks.CHAIN_COMMAND_BLOCK)) {
|
2016-11-14 02:36:23 +01:00
|
|
|
+ this.block = Blocks.STONE.getBlockData();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
this.ticksLived = nbttagcompound.getInt("Time");
|
2018-07-16 22:08:09 +02:00
|
|
|
if (nbttagcompound.hasKeyOfType("HurtEntities", 99)) {
|
|
|
|
this.hurtEntities = nbttagcompound.getBoolean("HurtEntities");
|
2016-11-13 06:29:32 +01:00
|
|
|
--
|
2018-07-04 09:55:24 +02:00
|
|
|
2.18.0
|
2016-11-13 06:29:32 +01:00
|
|
|
|