Changed Block.setTypeId() back to old behavior before the new translation process.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user