31 lines
862 B
Java
31 lines
862 B
Java
![]() |
package WayofTime.bloodmagic.api.alchemyCrafting;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import net.minecraft.entity.item.EntityItem;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.tileentity.TileEntity;
|
||
|
import net.minecraft.util.BlockPos;
|
||
|
|
||
|
public class AlchemyArrayEffectCrafting extends AlchemyArrayEffect {
|
||
|
|
||
|
@Getter
|
||
|
public final ItemStack outputStack;
|
||
|
|
||
|
public AlchemyArrayEffectCrafting(ItemStack outputStack) {
|
||
|
this.outputStack = outputStack;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean update(TileEntity tile, int ticksActive) {
|
||
|
//TODO: Add recipe rechecking to verify nothing screwy is going on.
|
||
|
BlockPos pos = tile.getPos();
|
||
|
|
||
|
ItemStack output = outputStack.copy();
|
||
|
EntityItem outputEntity = new EntityItem(tile.getWorld(), pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, output);
|
||
|
|
||
|
tile.getWorld().spawnEntityInWorld(outputEntity);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
}
|