diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f51f31d6..b42ee6f21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,6 +87,7 @@ * Fixed Fluid Pump treating low-level fluids like stationary fluids * Fixed Fluid Pump not working on Bubble Columns * Fixed #2251 +* Fixed #2257 ## Release Candidate 15 (01 Aug 2020) diff --git a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/blocks/RepairedSpawner.java b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/blocks/RepairedSpawner.java index 66fef9d18..8ef550897 100644 --- a/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/blocks/RepairedSpawner.java +++ b/src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/blocks/RepairedSpawner.java @@ -1,5 +1,7 @@ package io.github.thebusybiscuit.slimefun4.implementation.items.blocks; +import java.util.ArrayList; +import java.util.Collection; import java.util.Locale; import java.util.Optional; @@ -77,5 +79,12 @@ public class RepairedSpawner extends SimpleSlimefunItem { return Optional.empty(); } + + @Override + public Collection getDrops() { + // There should be no drops by default since drops are handled by the + // Pickaxe of Containment exclusively. + return new ArrayList<>(); + } }