13
0
geforkt von Mirrors/Paper

CraftBlock.toString shouldn't make legacy call

Dieser Commit ist enthalten in:
md_5 2018-07-20 16:10:48 +10:00
Ursprung 814c742554
Commit 7c0f69e449

Datei anzeigen

@ -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) {