mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-12-22 17:34:00 +07:00
Problematic detection fix (#10372)
This commit is contained in:
parent
3ff6f834a5
commit
30328e61a5
@ -413,7 +413,7 @@ public class Planet extends UnlockableContent{
|
||||
Vec3 vec = intersect(ray, radius);
|
||||
if(vec == null) return null;
|
||||
vec.sub(position).rotate(Vec3.Y, getRotation());
|
||||
return sectors.min(t -> t.tile.v.dst2(vec));
|
||||
return sectors.min(t -> Tmp.v31.set(t.tile.v).setLength(radius).dst2(vec));
|
||||
}
|
||||
|
||||
/** @return the sector that is hit by this ray, or null if nothing intersects it. */
|
||||
|
Loading…
Reference in New Issue
Block a user