Gitignore and removed println

master
Alxandr 2013-09-28 20:30:14 +02:00
parent c6177289b0
commit cfc05c95f6
2 changed files with 6 additions and 2 deletions

4
.gitignore vendored
View File

@ -1,4 +1,8 @@
build
download
/bin
/out
*.DS_Store
.idea/
Thumbs.db
ForgeModLoader-client*

View File

@ -40,7 +40,7 @@ public class TileEntityBlockBreaker extends OpenTileEntity {
}
private void breakBlock() {
System.out.println("Breaking block");
//System.out.println("Breaking block");
int direction = getMetadata();
int x = xCoord,
@ -74,7 +74,7 @@ public class TileEntityBlockBreaker extends OpenTileEntity {
worldObj.setBlock(x, y, z, 0, 0, 3);
System.out.println("Dropped " + items.size() + " stacks");
//System.out.println("Dropped " + items.size() + " stacks");
ejectAt(worldObj, backX, backY, backZ, backDirection, items);
}