Merge remote-tracking branch 'upstream/develop' into new-plugin-system

This commit is contained in:
David Pierron
2020-10-20 22:10:19 +02:00
12 changed files with 188 additions and 87 deletions

View File

@@ -71,7 +71,7 @@ class Weather:
return WindConditions(
# Always some wind to make the smoke move a bit.
at_0m=Wind(wind_direction, min(1, base_wind * at_0m_factor)),
at_0m=Wind(wind_direction, max(1, base_wind * at_0m_factor)),
at_2000m=Wind(wind_direction, base_wind * at_2000m_factor),
at_8000m=Wind(wind_direction, base_wind * at_8000m_factor)
)