diff --git a/mods/ITEMS/mclx_core/textures/default_river_water_flowing_animated.png b/mods/ITEMS/mclx_core/textures/default_river_water_flowing_animated.png index 9e126d3c1..1ccc0cba1 100644 Binary files a/mods/ITEMS/mclx_core/textures/default_river_water_flowing_animated.png and b/mods/ITEMS/mclx_core/textures/default_river_water_flowing_animated.png differ diff --git a/mods/ITEMS/mclx_core/textures/default_river_water_source_animated.png b/mods/ITEMS/mclx_core/textures/default_river_water_source_animated.png index fb8ae17bd..fed805264 100644 Binary files a/mods/ITEMS/mclx_core/textures/default_river_water_source_animated.png and b/mods/ITEMS/mclx_core/textures/default_river_water_source_animated.png differ diff --git a/mods/MAPGEN/mcl_structures/witch_hut.lua b/mods/MAPGEN/mcl_structures/witch_hut.lua index c5a683ce5..af88e1f49 100644 --- a/mods/MAPGEN/mcl_structures/witch_hut.lua +++ b/mods/MAPGEN/mcl_structures/witch_hut.lua @@ -48,7 +48,7 @@ local function on_placed(place, rotation, pr, size) if not nn then break end local node = minetest.registered_nodes[nn] local groups = node.groups - if nn == "mcl_flowers:waterlily" or nn == "mcl_core:water_source" or nn == "mcl_core:water_flowing" or nn == "air" or groups.deco_block then + if nn == "mcl_flowers:waterlily" or nn == "mcl_core:river_water_source" or nn == "mcl_core:water_source" or nn == "mcl_core:water_flowing" or nn == "air" or groups.deco_block then minetest.swap_node(tpos, {name="mcl_core:tree"}) else break @@ -101,7 +101,7 @@ mcl_structures.register_structure({ decoration = { deco_type = "simple", place_on = node_list, - spawn_by = {"mcl_core:water_source", "group:frosted_ice"}, + spawn_by = {"mcl_core:river_water_source", "mcl_core:water_source", "group:frosted_ice"}, num_spawn_by = 1, -- flags = "all_floors", fill_ratio = scanning_ratio,