mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 00:50:41 +01:00
CraftBlock.toString shouldn't make legacy call
This commit is contained in:
parent
814c742554
commit
7c0f69e449
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ public class CraftBlock implements Block {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "CraftBlock{pos=" + position + ",type=" + getType() + ",data=" + getData() + '}';
|
||||
return "CraftBlock{pos=" + position + ",type=" + getType() + ",data=" + getNMS() + '}';
|
||||
}
|
||||
|
||||
public static BlockFace notchToBlockFace(EnumDirection notch) {
|
||||
|
|
Loading…
Reference in a new issue