Returns this block's coordinates packed into a long value. Computed via: Block.getBlockKey(this.getX(), this.getY(), this.getZ()) @see Block#getBlockKey(int, int, int) @return This block's x, y, and z coordinates packed into a long value @deprecated see #getBlockKey(int, int, int)
()
| 165 | * @deprecated see {@link #getBlockKey(int, int, int)} |
| 166 | */ |
| 167 | @Deprecated(since = "1.18.1") |
| 168 | public default long getBlockKey() { |
| 169 | return Block.getBlockKey(this.getX(), this.getY(), this.getZ()); |
| 170 | } |
no outgoing calls
no test coverage detected