Skip to content

Commit

Permalink
Merge pull request #36222 from davidpwbrown/why_is_the_rain_green
Browse files Browse the repository at this point in the history
Fix light drizzle being green
  • Loading branch information
ZhilkinSerg authored Dec 18, 2019
2 parents 572b78f + af9ccae commit 0bb87ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/weather_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ weather_animation_t get_weather_animation( weather_type const type )
static const std::map<weather_type, weather_animation_t> map {
{WEATHER_ACID_DRIZZLE, weather_animation_t {0.01f, c_light_green, '.'}},
{WEATHER_ACID_RAIN, weather_animation_t {0.02f, c_light_green, ','}},
{WEATHER_LIGHT_DRIZZLE, weather_animation_t{0.01f, c_light_green, ','}},
{WEATHER_LIGHT_DRIZZLE, weather_animation_t{0.01f, c_light_blue, ','}},
{WEATHER_DRIZZLE, weather_animation_t {0.01f, c_light_blue, '.'}},
{WEATHER_RAINY, weather_animation_t {0.02f, c_light_blue, ','}},
{WEATHER_THUNDER, weather_animation_t {0.02f, c_light_blue, '.'}},
Expand Down

0 comments on commit 0bb87ac

Please sign in to comment.