fix for nosilkdrop

This commit is contained in:
Brianna O'Keefe 2018-12-29 12:14:50 -05:00
parent 228fc90c51
commit ee981846b3
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public class BlockListeners implements Listener {
instance.getHologramHandler().updateHologram(stack);
}
}
if (item != null && (item.getEnchantments().containsKey(Enchantment.SILK_TOUCH) && player.hasPermission("ultimatestacker.spawner.silktouch") || player.hasPermission("ultimatestacker.spawner.nosilkdrop")))
if (player.hasPermission("ultimatestacker.spawner.nosilkdrop") || item != null && item.getEnchantments().containsKey(Enchantment.SILK_TOUCH) && player.hasPermission("ultimatestacker.spawner.silktouch"))
block.getWorld().dropItemNaturally(block.getLocation(), Methods.getSpawnerItem(blockType, amt));
}