1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00
This commit is contained in:
TheBusyBiscuit 2020-08-28 23:18:43 +02:00
parent 43ef02d31c
commit 5bef6a9ec8
2 changed files with 10 additions and 0 deletions

View File

@ -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)

View File

@ -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<BlockPlaceHandler> {
return Optional.empty();
}
@Override
public Collection<ItemStack> getDrops() {
// There should be no drops by default since drops are handled by the
// Pickaxe of Containment exclusively.
return new ArrayList<>();
}
}