Removed sout lines

This commit is contained in:
modmuss50 2015-11-22 10:33:21 +00:00
parent 48a7f1cc6d
commit 05e7ecf2f3
5 changed files with 4 additions and 5 deletions

View file

@ -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;
}

View file

@ -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) {
}
}