mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
This commit is contained in:
parent
6876f192de
commit
be2de1d487
@ -184,9 +184,10 @@ public class HashChunkletManager implements ChunkletManager {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isTrue(int x, int y, int z, World world) {
|
public boolean isTrue(int x, int y, int z, World world) {
|
||||||
int cx = x / 16;
|
int cx = x >> 4;
|
||||||
int cz = z / 16;
|
int cz = z >> 4;
|
||||||
int cy = y / 64;
|
int cy = y >> 6;
|
||||||
|
|
||||||
String key = world.getName() + "," + cx + "," + cz + "," + cy;
|
String key = world.getName() + "," + cx + "," + cz + "," + cy;
|
||||||
|
|
||||||
if (!store.containsKey(key)) {
|
if (!store.containsKey(key)) {
|
||||||
@ -212,9 +213,9 @@ public class HashChunkletManager implements ChunkletManager {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setTrue(int x, int y, int z, World world) {
|
public void setTrue(int x, int y, int z, World world) {
|
||||||
int cx = x / 16;
|
int cx = x >> 4;
|
||||||
int cz = z / 16;
|
int cz = z >> 4;
|
||||||
int cy = y / 64;
|
int cy = y >> 6;
|
||||||
|
|
||||||
int ix = Math.abs(x) % 16;
|
int ix = Math.abs(x) % 16;
|
||||||
int iz = Math.abs(z) % 16;
|
int iz = Math.abs(z) % 16;
|
||||||
@ -244,9 +245,9 @@ public class HashChunkletManager implements ChunkletManager {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setFalse(int x, int y, int z, World world) {
|
public void setFalse(int x, int y, int z, World world) {
|
||||||
int cx = x / 16;
|
int cx = x >> 4;
|
||||||
int cz = z / 16;
|
int cz = z >> 4;
|
||||||
int cy = y / 64;
|
int cy = y >> 6;
|
||||||
|
|
||||||
int ix = Math.abs(x) % 16;
|
int ix = Math.abs(x) % 16;
|
||||||
int iz = Math.abs(z) % 16;
|
int iz = Math.abs(z) % 16;
|
||||||
|
@ -293,8 +293,9 @@ public class HashChunkManager implements ChunkManager {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
int cx = x / 16;
|
int cx = x >> 4;
|
||||||
int cz = z / 16;
|
int cz = z >> 4;
|
||||||
|
|
||||||
String key = world.getName() + "," + cx + "," + cz;
|
String key = world.getName() + "," + cx + "," + cz;
|
||||||
|
|
||||||
if (!store.containsKey(key)) {
|
if (!store.containsKey(key)) {
|
||||||
@ -336,8 +337,8 @@ public class HashChunkManager implements ChunkManager {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int cx = x / 16;
|
int cx = x >> 4;
|
||||||
int cz = z / 16;
|
int cz = z >> 4;
|
||||||
|
|
||||||
int ix = Math.abs(x) % 16;
|
int ix = Math.abs(x) % 16;
|
||||||
int iz = Math.abs(z) % 16;
|
int iz = Math.abs(z) % 16;
|
||||||
@ -382,8 +383,8 @@ public class HashChunkManager implements ChunkManager {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int cx = x / 16;
|
int cx = x >> 4;
|
||||||
int cz = z / 16;
|
int cz = z >> 4;
|
||||||
|
|
||||||
int ix = Math.abs(x) % 16;
|
int ix = Math.abs(x) % 16;
|
||||||
int iz = Math.abs(z) % 16;
|
int iz = Math.abs(z) % 16;
|
||||||
|
Loading…
Reference in New Issue
Block a user