2015-04-11 01:07:59 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Wed, 2 Mar 2016 00:32:25 -0600
|
2015-04-11 01:07:59 +02:00
|
|
|
Subject: [PATCH] Always tick falling blocks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/spigotmc/ActivationRange.java b/src/main/java/org/spigotmc/ActivationRange.java
|
2020-05-06 11:48:49 +02:00
|
|
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
2015-04-11 01:07:59 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/ActivationRange.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/ActivationRange.java
|
2016-03-25 05:59:37 +01:00
|
|
|
@@ -0,0 +0,0 @@ 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;
|
2015-04-11 01:07:59 +02:00
|
|
|
@@ -0,0 +0,0 @@ public class ActivationRange
|
|
|
|
|| entity instanceof EntityFireball
|
2019-04-24 04:34:11 +02:00
|
|
|
|| entity instanceof EntityLightning
|
2015-04-11 01:07:59 +02:00
|
|
|
|| entity instanceof EntityTNTPrimed
|
2016-03-01 00:09:49 +01:00
|
|
|
+ || entity instanceof EntityFallingBlock // Paper - Always tick falling blocks
|
2015-04-11 01:07:59 +02:00
|
|
|
|| entity instanceof EntityEnderCrystal
|
2018-07-15 03:53:17 +02:00
|
|
|
|| entity instanceof EntityFireworks
|
|
|
|
|| entity instanceof EntityThrownTrident )
|