2016-12-17 05:13:45 +01:00
|
|
|
From 84877410582d951108695a4d3d1d1951645022bb Mon Sep 17 00:00:00 2001
|
2016-03-25 05:59:37 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Wed, 2 Mar 2016 00:32:25 -0600
|
|
|
|
Subject: [PATCH] Always tick falling blocks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/spigotmc/ActivationRange.java b/src/main/java/org/spigotmc/ActivationRange.java
|
2016-11-17 03:23:38 +01:00
|
|
|
index 5c2fb00..c411ce8 100644
|
2016-03-25 05:59:37 +01:00
|
|
|
--- a/src/main/java/org/spigotmc/ActivationRange.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/ActivationRange.java
|
|
|
|
@@ -13,6 +13,7 @@ import net.minecraft.server.EntityCreature;
|
|
|
|
import net.minecraft.server.EntityCreeper;
|
|
|
|
import net.minecraft.server.EntityEnderCrystal;
|
|
|
|
import net.minecraft.server.EntityEnderDragon;
|
|
|
|
+import net.minecraft.server.EntityFallingBlock; // Paper
|
|
|
|
import net.minecraft.server.EntityFireball;
|
|
|
|
import net.minecraft.server.EntityFireworks;
|
|
|
|
import net.minecraft.server.EntityHuman;
|
|
|
|
@@ -80,6 +81,7 @@ public class ActivationRange
|
|
|
|
|| entity instanceof EntityFireball
|
|
|
|
|| entity instanceof EntityWeather
|
|
|
|
|| entity instanceof EntityTNTPrimed
|
|
|
|
+ || entity instanceof EntityFallingBlock // Paper - Always tick falling blocks
|
|
|
|
|| entity instanceof EntityEnderCrystal
|
|
|
|
|| entity instanceof EntityFireworks )
|
|
|
|
{
|
|
|
|
--
|
2016-12-17 05:13:45 +01:00
|
|
|
2.9.3
|
2016-03-25 05:59:37 +01:00
|
|
|
|