diff --git a/src/me/mrCookieSlime/Slimefun/Setup/SlimefunSetup.java b/src/me/mrCookieSlime/Slimefun/Setup/SlimefunSetup.java index 23a4d0338..03c0f6fd0 100644 --- a/src/me/mrCookieSlime/Slimefun/Setup/SlimefunSetup.java +++ b/src/me/mrCookieSlime/Slimefun/Setup/SlimefunSetup.java @@ -1840,7 +1840,6 @@ public class SlimefunSetup { Block b = e.getBlock(); // Refactored it into this so we don't need to call e.getBlock() all the time. if (b.getType() != Material.SPAWNER || BlockStorage.hasBlockInfo(b)) return true; // If the spawner's BlockStorage has BlockInfo, then it's not a vanilla spawner and shouldn't give a broken spawner. - BlockStorage.clearBlockInfo(b); ItemStack spawner = SlimefunItems.BROKEN_SPAWNER.clone(); ItemMeta im = spawner.getItemMeta(); List lore = im.getLore();