make worldgen classes server side

This commit is contained in:
Sen 2025-07-24 22:49:22 +02:00
parent 4de4f41a5d
commit d56f28e6d2
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
69 changed files with 1018 additions and 1809 deletions

View file

@ -1871,9 +1871,8 @@ public class Client implements IThreadListener {
this.world.getDayTime() % this.world.dimension.getOrbitalPeriod(),
this.world.dimension.getOrbitalPeriod()
) + "\n" +
String.format("Laub: %s%s, T: %.2f K / %.2f °C, %s (R %.1f, %.1f)",
!this.world.dimension.hasSeasons() ? "*" : "",
this.world.getLeavesGen(pos).getDisplayName(),
String.format("Laub: %s, T: %.2f K / %.2f °C, %s (R %.1f, %.1f)",
!this.world.dimension.hasSeasons() ? "*" : this.world.getLeavesType().getDisplayName(),
this.world.getTemperatureK(pos), this.world.getTemperatureC(pos),
this.world.getWeather().getDisplay(), this.world.getRainStrength(),
this.world.getDarkness()