Optimized imports

This commit is contained in:
Anuken
2023-04-06 10:46:52 -04:00
parent 97390d25c0
commit 72b456fca2
39 changed files with 127 additions and 135 deletions

View File

@@ -202,7 +202,7 @@ public class SerpuloPlanetGenerator extends PlanetGenerator{
if(Mathf.dst2(t.x, t.y, x2, y2) <= avoid * avoid){
return;
}
for(int x = -rad; x <= rad; x++){
for(int y = -rad; y <= rad; y++){
int wx = t.x + x, wy = t.y + y;