Replaces all local variables regarding their naming conventions

This commit is contained in:
thatsIch
2015-05-08 23:34:24 +02:00
parent d8ac614a17
commit 513292cd08
18 changed files with 132 additions and 132 deletions
@@ -437,10 +437,10 @@ public final class MeteoritePlacer
public double getSqDistance( int x, int z )
{
int Cx = this.settings.getInteger( "x" ) - x;
int Cz = this.settings.getInteger( "z" ) - z;
int chunkX = this.settings.getInteger( "x" ) - x;
int chunkZ = this.settings.getInteger( "z" ) - z;
return Cx * Cx + Cz * Cz;
return chunkX * chunkX + chunkZ * chunkZ;
}
public boolean spawnMeteorite( IMeteoriteWorld w, int x, int y, int z )