mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-21 14:39:01 +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
|
@Override
|
||||||
public String toString() {
|
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) {
|
public static BlockFace notchToBlockFace(EnumDirection notch) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue