mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 07:16:22 +00:00
Cleanup
This commit is contained in:
@@ -92,13 +92,12 @@ public class BlockPosition {
|
||||
return var3;
|
||||
}
|
||||
|
||||
public Block toBlock(World world)
|
||||
{
|
||||
return world.getBlockAt(x,y,z);
|
||||
public Block toBlock(World world) {
|
||||
return world.getBlockAt(x, y, z);
|
||||
}
|
||||
|
||||
public BlockPosition add(int x, int y, int z) {
|
||||
return new BlockPosition(x,y,z);
|
||||
return new BlockPosition(x, y, z);
|
||||
}
|
||||
|
||||
public void min(BlockPosition i) {
|
||||
|
||||
@@ -18,11 +18,6 @@
|
||||
|
||||
package com.volmit.iris.util.math;
|
||||
|
||||
import com.volmit.iris.engine.object.IrisBiomePaletteLayer;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.block.Block;
|
||||
|
||||
public class Position2 {
|
||||
private int x;
|
||||
private int z;
|
||||
|
||||
Reference in New Issue
Block a user