mirror of
https://github.com/t-affeldt/climate_api.git
synced 2024-11-18 00:18:20 +01:00
14 lines
400 B
Lua
14 lines
400 B
Lua
if not climate_mod.settings.sound then return end
|
|
|
|
return
|
|
|
|
local function update_effect(player_data)
|
|
for playername, data in pairs(player_data) do
|
|
for weather, value in pairs(data) do
|
|
climate_mod.effects.play_sound(player, value)
|
|
end
|
|
end
|
|
end
|
|
|
|
climate_api.register_effect("climate_api:sound", update_effect, "change")
|
|
climate_api.set_effect_cycle("climate_api:skybox", climate_api.LONG_CYCLE) |