Fixed recipes and System messages
I'm stupid rooDerp
This commit is contained in:
parent
f0d62b997a
commit
ab230b7af4
11 changed files with 720 additions and 20 deletions
|
@ -178,7 +178,6 @@ public class BloodAltar// implements IFluidHandler
|
|||
|
||||
public void startCycle()
|
||||
{
|
||||
// System.out.println("Starting Cycle");
|
||||
if (tileAltar.getWorld() != null)
|
||||
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
||||
|
||||
|
@ -332,7 +331,6 @@ public class BloodAltar// implements IFluidHandler
|
|||
}
|
||||
if (fluid != null && fluid.getAmount() >= 1)
|
||||
{
|
||||
System.out.println("Draining in order to craft! Progress: " + progress + "/" + liquidRequired);
|
||||
// int liquidDrained = Math.min((int) (altarTier.ordinal() >= 1
|
||||
// ? consumptionRate * (1 + consumptionMultiplier)
|
||||
// : consumptionRate), fluid.getAmount());
|
||||
|
|
|
@ -264,11 +264,11 @@ public class TileInventory extends TileBase implements IInventory
|
|||
if (this instanceof ISidedInventory)
|
||||
{
|
||||
handlerDown = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.DOWN));
|
||||
handlerUp = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.DOWN));
|
||||
handlerNorth = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.DOWN));
|
||||
handlerSouth = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.DOWN));
|
||||
handlerWest = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.DOWN));
|
||||
handlerEast = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.DOWN));
|
||||
handlerUp = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.UP));
|
||||
handlerNorth = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.NORTH));
|
||||
handlerSouth = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.SOUTH));
|
||||
handlerWest = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.WEST));
|
||||
handlerEast = LazyOptional.of(() -> new SidedInvWrapper((ISidedInventory) this, Direction.EAST));
|
||||
} else
|
||||
{
|
||||
handlerDown = LazyOptional.of(() -> new InvWrapper(this));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue