/******************************************************************************* * Copyright 2011-2014 SirSengir * * This work (the API) is licensed under the "MIT" License, see LICENSE.txt for details. ******************************************************************************/ package forestry.api.storage; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import cpw.mods.fml.common.eventhandler.Cancelable; /** * Use @SubscribeEvent on a method taking this event as an argument. Will fire whenever a backpack tries to store an item. Processing will stop if the stacksize * of stackToStow drops to 0 or less or the event is canceled. */ @Cancelable public class BackpackStowEvent extends BackpackEvent { public final ItemStack stackToStow; public BackpackStowEvent(EntityPlayer player, IBackpackDefinition backpackDefinition, IInventory backpackInventory, ItemStack stackToStow) { super(player, backpackDefinition, backpackInventory); this.stackToStow = stackToStow; } }