mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-10 02:01:07 +01:00
Force has_mcl_potions to boolean
This commit is contained in:
parent
87a48270f5
commit
e407e2e290
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
name = mcl_weather
|
name = mcl_weather
|
||||||
author = xeranas
|
author = xeranas
|
||||||
description = Weather and sky handling: Rain, snow, thunderstorm, End and Nether ambience
|
description = Weather and sky handling: Rain, snow, thunderstorm, End and Nether ambience
|
||||||
depends = mcl_init, mcl_worlds, mcl_playerinfo
|
depends = mcl_init, mcl_worlds, mcl_playerinfo, mcl_util
|
||||||
optional_depends = lightning
|
optional_depends = lightning
|
||||||
|
|
|
@ -5,7 +5,7 @@ local DIM_ALLOW_NIGHT_VISION = {
|
||||||
|
|
||||||
local NIGHT_VISION_RATIO = mcl_weather.skycolor.NIGHT_VISION_RATIO
|
local NIGHT_VISION_RATIO = mcl_weather.skycolor.NIGHT_VISION_RATIO
|
||||||
local effects_handlers = {}
|
local effects_handlers = {}
|
||||||
local has_mcl_potions = minetest.get_modpath("mcl_potions")
|
local has_mcl_potions = mcl_util.to_bool(minetest.get_modpath("mcl_potions"))
|
||||||
|
|
||||||
function effects_handlers.darkness(player, meta, effect, sky_data)
|
function effects_handlers.darkness(player, meta, effect, sky_data)
|
||||||
-- No darkness effect if visited by shepherd
|
-- No darkness effect if visited by shepherd
|
||||||
|
|
Loading…
Reference in a new issue