From a245892c3c26c3a934aa6df5596d4314515ef02d Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Sun, 31 Aug 2014 13:09:23 -0500 Subject: [PATCH] Remove brewing stands from the TE optimizations as well Possible conflict with CB wall time patches? --- .../0034-Optimize-TileEntity-Ticking.patch | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Spigot-Server-Patches/0034-Optimize-TileEntity-Ticking.patch b/Spigot-Server-Patches/0034-Optimize-TileEntity-Ticking.patch index 9e4c4a8497..cbde9ffd03 100644 --- a/Spigot-Server-Patches/0034-Optimize-TileEntity-Ticking.patch +++ b/Spigot-Server-Patches/0034-Optimize-TileEntity-Ticking.patch @@ -106,7 +106,7 @@ new file mode 100644 index 0000000..4e6b762 --- /dev/null +++ b/src/main/java/org/spigotmc/WorldTileEntityList.java -@@ -0,0 +1,173 @@ +@@ -0,0 +1,174 @@ +package org.spigotmc; + +import com.google.common.collect.ArrayListMultimap; @@ -146,8 +146,9 @@ index 0000000..4e6b762 + put(TileEntityEnchantTable.class, 20); + + // Slow things down that players won't notice due to craftbukkit "wall time" patches. -+ put(TileEntityFurnace.class, 20); // Needed for furnaces to work, will investigate at some point -+ put(TileEntityBrewingStand.class, 10); ++ // These need to be investigated further before they can be safely used here ++ //put(TileEntityFurnace.class, 20); ++ //put(TileEntityBrewingStand.class, 10); + + // Vanilla controlled values - These are checks already done in vanilla, so don't tick on ticks we know + // won't do anything anyways