Fix CraftBlock toString.

This commit is contained in:
Erik Broes 2011-12-01 21:00:21 +01:00
parent 51f724f24d
commit da6b412fd2

View File

@ -146,7 +146,7 @@ public class CraftBlock implements Block {
@Override @Override
public String toString() { public String toString() {
return "CraftBlock{" + "chunk=" + chunk + "x=" + x + "y=" + y + "z=" + z + '}'; return "CraftBlock{" + "chunk=" + chunk + ",x=" + x + ",y=" + y + ",z=" + z + ",type=" + getType() + ",data=" + getData() + '}';
} }
/** /**