From 1674e1638867141ecb22c8d69fbd70942c02d23b Mon Sep 17 00:00:00 2001 From: Olof Larsson Date: Thu, 13 Oct 2016 17:46:46 +0200 Subject: [PATCH] Add Ender Crystal protection. --- src/com/massivecraft/factions/entity/MConf.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/com/massivecraft/factions/entity/MConf.java b/src/com/massivecraft/factions/entity/MConf.java index 012100a6..9c3df8e8 100644 --- a/src/com/massivecraft/factions/entity/MConf.java +++ b/src/com/massivecraft/factions/entity/MConf.java @@ -547,7 +547,8 @@ public class MConf extends Entity "BUCKET", // Minecraft 1.? "WATER_BUCKET", // Minecraft 1.? "LAVA_BUCKET", // Minecraft 1.? - "ARMOR_STAND" // Minecraft 1.8 + "ARMOR_STAND", // Minecraft 1.8 + "END_CRYSTAL" // Minecraft 1.10 ); // The duplication bug found in Spigot 1.8 protocol patch @@ -603,7 +604,8 @@ public class MConf extends Entity // Damaging these entities results in an edit. public BackstringEnumSet entityTypesEditOnDamage = new BackstringEnumSet(EntityType.class, "ITEM_FRAME", // Minecraft 1.? - "ARMOR_STAND" // Minecraft 1.8 + "ARMOR_STAND", // Minecraft 1.8 + "ENDER_CRYSTAL" // Minecraft 1.10 ); // Interacting with these entities results in opening a container.