diff --git a/abms/ice.lua b/abms/ice.lua index a134a07..083892d 100644 --- a/abms/ice.lua +++ b/abms/ice.lua @@ -20,7 +20,7 @@ minetest.register_node(BLOCK_NAME, { }, freezemelt = "default:river_water_source", sounds = default.node_sound_glass_defaults(), - use_texture_alpha = true, + use_texture_alpha = "blend", drop = "", on_destruct = function(pos) -- asynchronous to avoid destruction loop diff --git a/abms/puddle.lua b/abms/puddle.lua index a450aa2..3d72761 100644 --- a/abms/puddle.lua +++ b/abms/puddle.lua @@ -69,7 +69,7 @@ for i = 1, VARIANT_COUNT do sunlight_propagates = true, paramtype = "light", paramtype2 = "facedir", - use_texture_alpha = true, + use_texture_alpha = "blend", node_box = node_box, groups = { not_in_creative_inventory = 1, diff --git a/ca_weathers/ambient.lua b/ca_weathers/ambient.lua index e9fe022..53c625d 100644 --- a/ca_weathers/ambient.lua +++ b/ca_weathers/ambient.lua @@ -50,7 +50,7 @@ local function generate_effects(params) override["climate_api:skybox"] = skybox - local movement = params.player:get_player_velocity() + local movement = params.player:get_velocity() local movement_direction if (vector.length(movement) < 0.1) then movement_direction = vector.new(0, 0, 0) diff --git a/textures/weather_hud_frost.png b/textures/weather_hud_frost.png index 4e6bc24..972a101 100644 Binary files a/textures/weather_hud_frost.png and b/textures/weather_hud_frost.png differ diff --git a/textures/weather_hud_sand.png b/textures/weather_hud_sand.png index 6567ecc..60f82d7 100644 Binary files a/textures/weather_hud_sand.png and b/textures/weather_hud_sand.png differ