mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 19:46:21 +01:00
Fix forgotten call of EntityInteractEvent for PressurePlates.
This commit is contained in:
parent
88ebcc8db5
commit
1db5464d91
@ -4,6 +4,7 @@ import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
// CraftBukkit start
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.craftbukkit.CraftServer;
|
||||
import org.bukkit.craftbukkit.CraftWorld;
|
||||
import org.bukkit.craftbukkit.block.CraftBlock;
|
||||
@ -108,6 +109,7 @@ public class BlockPressurePlate extends Block {
|
||||
}
|
||||
else if (object instanceof Entity) {
|
||||
cancellable = new EntityInteractEvent(((Entity) object).getBukkitEntity(), ((WorldServer)world).getWorld().getBlockAt(i, j, k));
|
||||
((CraftServer)Bukkit.getServer()).getPluginManager().callEvent((EntityInteractEvent) cancellable);
|
||||
}
|
||||
else continue;
|
||||
if (cancellable.isCancelled()) {
|
||||
|
Loading…
Reference in New Issue
Block a user