Removed sout lines
This commit is contained in:
parent
48a7f1cc6d
commit
05e7ecf2f3
5 changed files with 4 additions and 5 deletions
|
@ -179,7 +179,6 @@ public class BlockMachineBase extends BlockContainer {
|
|||
} else {
|
||||
items.add(isAdvanced() ? new ItemStack(Item.getItemFromBlock(ModBlocks.MachineCasing), 1, 2) : new ItemStack(Item.getItemFromBlock(ModBlocks.MachineCasing), 1, 0));
|
||||
}
|
||||
System.out.println(items.toString());
|
||||
return items;
|
||||
}
|
||||
|
||||
|
|
|
@ -66,4 +66,8 @@ public class BlockPlayerDetector extends BlockMachineBase {
|
|||
return textures[MathHelper.clamp_int(metaData, 0, types.length - 1)];
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBlockAdded(World world, int x, int y, int z) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,7 +43,6 @@ public class RecipesForestry implements ICompatModule {
|
|||
log.stackSize = 1;
|
||||
ItemStack plank = TreeManager.woodItemAccess.getPlanks(woodType, true);
|
||||
plank.stackSize = 6;
|
||||
System.out.println(log.getDisplayName() + ":" + plank.getDisplayName());
|
||||
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, null, new FluidStack(FluidRegistry.WATER, 1000), plank, pulpStack, null, 200, 30, false));
|
||||
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, IC2Items.getItem("waterCell"), null, plank, pulpStack, IC2Items.getItem("cell"), 200, 30, false));
|
||||
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, new ItemStack(Items.water_bucket), null, plank, pulpStack, new ItemStack(Items.bucket), 200, 30, false));
|
||||
|
@ -52,7 +51,6 @@ public class RecipesForestry implements ICompatModule {
|
|||
log.stackSize = 1;
|
||||
plank = TreeManager.woodItemAccess.getPlanks(woodType, false);
|
||||
plank.stackSize = 6;
|
||||
System.out.println(log.getDisplayName() + ":" + plank.getDisplayName());
|
||||
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, null, new FluidStack(FluidRegistry.WATER, 1000), plank, pulpStack, null, 200, 30, false));
|
||||
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, IC2Items.getItem("waterCell"), null, plank, pulpStack, IC2Items.getItem("cell"), 200, 30, false));
|
||||
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, new ItemStack(Items.water_bucket), null, plank, pulpStack, new ItemStack(Items.bucket), 200, 30, false));
|
||||
|
|
|
@ -43,7 +43,6 @@ public class TileChemicalReactor extends TilePowerAcceptor implements IWrenchabl
|
|||
{
|
||||
if(getStackInSlot(slot) != null)
|
||||
{
|
||||
System.out.println("hi");
|
||||
if(getStackInSlot(slot).getItem() instanceof IElectricItem)
|
||||
{
|
||||
if(getEnergy() != getMaxPower())
|
||||
|
|
|
@ -150,7 +150,6 @@ public class TileDieselGenerator extends TilePowerAcceptor implements IWrenchabl
|
|||
if (getFreeSpace() >= powerIn) {
|
||||
addEnergy(powerIn, false);
|
||||
tank.drain(1, true);
|
||||
System.out.println(getEnergy() + ":" + tank.getFluidAmount());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue