Class VanillaInventoryDropHandler<T extends BlockState & InventoryHolder>

java.lang.Object
io.github.thebusybiscuit.slimefun4.core.handlers.BlockBreakHandler
io.github.thebusybiscuit.slimefun4.implementation.handlers.VanillaInventoryDropHandler<T>
Type Parameters:
T - The type of BlockState and InventoryHolder we are dealing with
All Implemented Interfaces:
ItemHandler

public class VanillaInventoryDropHandler<T extends BlockState & InventoryHolder> extends BlockBreakHandler
This is an implementation of BlockBreakHandler which is suited for any SlimefunItem that uses the vanilla Inventory from the BlockState.

The default behaviour is the following:

| Broken by... | Behaviour                |
| ------------ | ------------------------ |
| Player       | Drop inventory contents. |
| Android      | Not allowed.             |
| Explosions   | Delete contents.         |
 
Author:
TheBusyBiscuit