Paper/CraftBukkit-Patches/0117-Fix-TileEntities-getting-ticked-after-being-queued-f.patch

39 lines
1.4 KiB
Diff
Raw Normal View History

2014-04-18 23:15:23 +00:00
From c104bf6c03a89946aba78481e78f33847246795f Mon Sep 17 00:00:00 2001
2014-04-12 04:18:37 +00:00
From: FrozenBrain <carstenbamsti@googlemail.com>
Date: Sun, 23 Mar 2014 01:49:13 +0100
Subject: [PATCH] Fix TileEntities getting ticked after being queued for
removal
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
2014-04-18 23:15:23 +00:00
index ee43bd7..52ed625 100644
2014-04-12 04:18:37 +00:00
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
2014-04-18 23:15:23 +00:00
@@ -1346,6 +1346,12 @@ public abstract class World implements IBlockAccess {
2014-04-12 04:18:37 +00:00
timings.entityTick.stopTiming(); // Spigot
this.methodProfiler.c("blockEntities");
timings.tileEntityTick.startTiming(); // Spigot
+ // Spigot start - brought up from below
+ if (!this.b.isEmpty()) {
+ this.tileEntityList.removeAll(this.b);
+ this.b.clear();
+ }
+ // Spigot End
this.M = true;
Iterator iterator = this.tileEntityList.iterator();
2014-04-18 23:15:23 +00:00
@@ -1394,10 +1400,6 @@ public abstract class World implements IBlockAccess {
2014-04-12 04:18:37 +00:00
timings.tileEntityTick.stopTiming(); // Spigot
timings.tileEntityPending.startTiming(); // Spigot
this.M = false;
- if (!this.b.isEmpty()) {
- this.tileEntityList.removeAll(this.b);
- this.b.clear();
- }
this.methodProfiler.c("pendingBlockEntities");
if (!this.a.isEmpty()) {
--
2014-04-18 23:15:23 +00:00
1.9.1
2014-04-12 04:18:37 +00:00