Removed some superfluous comments in WeatherService#constructWeatherPacket

This commit is contained in:
Ziggy
2023-07-15 23:08:48 +02:00
parent 87c5bfc3d9
commit 9fcc96465e
@@ -125,8 +125,8 @@ public final class WeatherService extends Service {
WeatherType type = weatherForTerrain.get(terrain);
swm.setType(type);
swm.setCloudVectorX(random.nextFloat()+1); // randomised
swm.setCloudVectorZ(random.nextFloat()+1); // randomised
swm.setCloudVectorX(random.nextFloat()+1);
swm.setCloudVectorZ(random.nextFloat()+1);
swm.setCloudVectorY(0); // Ziggy: Always 0, clouds don't move up/down
return swm;