fix: remove logs

This commit is contained in:
ZtereoHYPE 2022-12-10 04:11:53 +01:00
parent c10f87bd1a
commit 21558faad2
2 changed files with 1 additions and 4 deletions

View file

@ -12,7 +12,6 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
public class MinecraftMixin {
@Inject(at = @At("TAIL"), method = "setLevel")
private void onWorldLoad(CallbackInfo ci) {
System.out.println("DONED THE LOADD");
NicerSkies.skyManager.generateSky(NebulaSeedManager.getSeed());
}
}

View file

@ -18,7 +18,7 @@ public class SkyManager {
private final Gradient starGradient = new Gradient();
private final Gradient nebulaGradient = new Gradient();
private final Gradient starryGradient = new Gradient();
// private final Gradient starryGradient = new Gradient();
public void generateSky(long seed) {
nebulaGradient.clear();
@ -26,8 +26,6 @@ public class SkyManager {
buildGradients();
System.out.println(seed);
RandomSource randomSource = RandomSource.create(seed); //todo: world seed/hash server ip
PerlinNoise perlinNoise = PerlinNoise.create(randomSource, IntStream.of(1, 2, 3, 4, 5));