Made Rifts Destroy Blocks in Layers

Made it so rifts destroy blocks in layers rather than destroying random
surrounding blocks, even through indestructible blocks. This resolves
issue #24.
This commit is contained in:
SenseiKiwi
2013-08-03 13:56:48 -04:00
parent 3d04e9b9cc
commit 3ef7630f2c
2 changed files with 75 additions and 37 deletions

View File

@@ -105,6 +105,6 @@ public class Point3D implements Serializable {
@Override
public String toString()
{
return "(" + x + ", " + "y" + ", " + z + ")";
return "(" + x + ", " + y + ", " + z + ")";
}
}