mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-01-26 09:31:31 +01:00
Tighten border tolerance
This commit is contained in:
parent
6da97c5e3f
commit
1495d6c2df
@ -889,7 +889,7 @@ public class IsoHDPerspective implements HDPerspective {
|
||||
double xoff = xx - fastFloor(xx);
|
||||
double yoff = yy - fastFloor(yy);
|
||||
double zoff = zz - fastFloor(zz);
|
||||
return ((xoff < 0.0001) || (xoff > 0.9999) || (yoff < 0.0001) || (yoff > 0.9999) || (zoff < 0.0001) || (zoff > 0.9999));
|
||||
return ((xoff < 0.00001) || (xoff > 0.99999) || (yoff < 0.00001) || (yoff > 0.99999) || (zoff < 0.00001) || (zoff > 0.99999));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user