mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 03:22:19 +01:00
Fix CraftBlock toString.
By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
parent
c370b75aca
commit
17ba6a756e
1 changed files with 1 additions and 1 deletions
|
@ -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() + '}';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue