mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-01-02 13:56:40 +00:00
Iris Complex
This commit is contained in:
@@ -25,4 +25,14 @@ public class BlockPosition
|
||||
{
|
||||
return z >> 4;
|
||||
}
|
||||
|
||||
public boolean is(int x, int z)
|
||||
{
|
||||
return this.x == x && this.z == z;
|
||||
}
|
||||
|
||||
public boolean is(int x, int y, int z)
|
||||
{
|
||||
return this.x == x && this.y == y && this.z == z;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,7 +39,6 @@ public class RNG extends Random
|
||||
return new RNG(sx + signature);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public RNG nextRNG()
|
||||
{
|
||||
return new RNG(nextLong());
|
||||
|
||||
Reference in New Issue
Block a user