mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 21:17:00 +01:00
Changed Block.setTypeId() back to old behavior before the new translation process.
This commit is contained in:
parent
58d3107e4c
commit
4ecbf5f590
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ public class CraftBlock implements Block {
|
||||||
* @return whether the block was changed
|
* @return whether the block was changed
|
||||||
*/
|
*/
|
||||||
public boolean setTypeId(final int type) {
|
public boolean setTypeId(final int type) {
|
||||||
return chunk.getHandle().world.setRawTypeId(x, y, z, type);
|
return chunk.getHandle().world.setTypeId(x, y, z, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean setTypeId(final int type, final boolean applyPhysics) {
|
public boolean setTypeId(final int type, final boolean applyPhysics) {
|
||||||
|
|
Loading…
Reference in a new issue