1
0
forked from noxious/client

Removed weather effects booleans, now to disable weather effects, setting the value to 0 is the way

This commit is contained in:
2025-01-22 17:50:08 -06:00
parent 41005735f9
commit a61e05592d
3 changed files with 9 additions and 15 deletions

View File

@ -242,15 +242,11 @@ export type Chat = {
export type WorldSettings = {
date: Date
isRainEnabled: boolean
isFogEnabled: boolean
fogDensity: number
weatherState: WeatherState
}
export type WeatherState = {
isRainEnabled: boolean
rainPercentage: number
isFogEnabled: boolean
fogDensity: number
}