3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Fix CraftBlock toString.

Dieser Commit ist enthalten in:
Erik Broes 2011-12-01 21:00:21 +01:00
Ursprung 51f724f24d
Commit da6b412fd2

Datei anzeigen

@ -146,7 +146,7 @@ public class CraftBlock implements Block {
@Override
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() + '}';
}
/**