diff --git a/modpack.txt b/modpack.txt index 573541a..e69de29 100644 --- a/modpack.txt +++ b/modpack.txt @@ -1 +0,0 @@ -0 diff --git a/weather/rain.lua b/weather/rain.lua index e250160..1a187bf 100644 --- a/weather/rain.lua +++ b/weather/rain.lua @@ -8,4 +8,4 @@ weather_mod.register_downfall("weather:rain",{ size=25, texture="weather_rain.png", enable_lightning=true, -}) \ No newline at end of file +}) diff --git a/weather/snow.lua b/weather/snow.lua index ae37734..5c867bb 100644 --- a/weather/snow.lua +++ b/weather/snow.lua @@ -9,7 +9,7 @@ weather_mod.register_downfall("weather:snow",{ texture="weather_snow.png" }) ---[[local snow_box = +local snow_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, -0.4, 0.5} @@ -26,7 +26,7 @@ minetest.register_node("weather:snow_cover", { drop = {} }) ---[ Enable this section if you have a very fast PC +--[[ Enable this section if you have a very fast PC minetest.register_abm({ nodenames = {"group:crumbly", "group:snappy", "group:cracky", "group:choppy"}, neighbors = {"default:air"}, @@ -40,7 +40,7 @@ minetest.register_abm({ if minetest.env:get_node_light(np, 0.5) == 15 and minetest.env:get_node(np).name == "air" then minetest.env:add_node(np, {name="weather:snow_cover"}) - end + end end end end diff --git a/weather/textures/weather_rain.png b/weather/textures/weather_rain.png index f77d5f4..39b153c 100644 Binary files a/weather/textures/weather_rain.png and b/weather/textures/weather_rain.png differ diff --git a/weather/textures/weather_snow.png b/weather/textures/weather_snow.png index 0eab70f..8c44f7a 100644 Binary files a/weather/textures/weather_snow.png and b/weather/textures/weather_snow.png differ