mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
21 lines
1.2 KiB
Diff
21 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
Date: Wed, 2 Mar 2016 00:32:25 -0600
|
|
Subject: [PATCH] Add more entities to activation range ignore list
|
|
|
|
|
|
diff --git a/src/main/java/org/spigotmc/ActivationRange.java b/src/main/java/org/spigotmc/ActivationRange.java
|
|
index a5da6c1cae0afbde684be250e2fc3c0c32a1265b..6d51464f6368151e8acc532414ee223714584e96 100644
|
|
--- a/src/main/java/org/spigotmc/ActivationRange.java
|
|
+++ b/src/main/java/org/spigotmc/ActivationRange.java
|
|
@@ -92,6 +92,9 @@ public class ActivationRange
|
|
|| entity instanceof AbstractHurtingProjectile
|
|
|| entity instanceof LightningBolt
|
|
|| entity instanceof PrimedTnt
|
|
+ || entity instanceof net.minecraft.world.entity.item.FallingBlockEntity // Paper - Always tick falling blocks
|
|
+ || entity instanceof net.minecraft.world.entity.vehicle.AbstractMinecart // Paper
|
|
+ || entity instanceof net.minecraft.world.entity.vehicle.Boat // Paper
|
|
|| entity instanceof EndCrystal
|
|
|| entity instanceof FireworkRocketEntity
|
|
|| entity instanceof ThrownTrident )
|