Add Smoke to Weather Condition List

This commit is contained in:
SDCore 2026-07-21 15:22:55 -05:00
parent 763fe50093
commit e9f6667cf0

View file

@ -24,6 +24,8 @@ export function getWeatherIcon(icon) {
return `rain`; return `rain`;
case "thunderstorm": case "thunderstorm":
return `tstorm`; return `tstorm`;
case "smoke":
return `smoke`;
default: default:
return `sunnyday`; return `sunnyday`;
} }