Tweak Skystone Scanning behavior.

This commit is contained in:
AlgorithmX2
2014-08-08 20:45:31 -05:00
parent 79d684bc92
commit bbad15d2e8
2 changed files with 28 additions and 9 deletions
+4
View File
@@ -52,6 +52,8 @@ final public class MeteoriteWorldGen implements IWorldGenerator
else
TickHandler.instance.addCallable( w, new MetoriteSpawn( chunkX << 4, 128, chunkZ << 4, w ) );
}
else
WorldSettings.getInstance().getCompass().updateArea( w, chunkX, chunkZ );
}
class MetoriteSpawn implements Callable
@@ -92,6 +94,8 @@ final public class MeteoriteWorldGen implements IWorldGenerator
tryMetroite( w, depth, x, z );
WorldSettings.getInstance().setGenerated( w.provider.dimensionId, chunkX, chunkZ );
WorldSettings.getInstance().getCompass().updateArea( w, chunkX, chunkZ );
return null;
}
}