Here is a nice little addition I added for myself so I could use it with the Discord Server Stats addon. Just a way to grab the previous, current and next weather types for Rust. Couldn't hurt to have this added for everyone.

var weather = SingletonComponent<Climate>.Instance;
AddPlaceholder(this, "world.weather.previous", (p, o) => weather.WeatherStatePrevious.name);
AddPlaceholder(this, "world.weather.current", (p, o) => weather.WeatherStateTarget.name);
AddPlaceholder(this, "world.weather.next", (p, o) => weather.WeatherStateNext.name);