From d2883676cc3545db79c68c3a2beb2861a21f469d Mon Sep 17 00:00:00 2001 From: crabman77 Date: Tue, 14 Jul 2015 20:34:40 +0200 Subject: [PATCH] remove lava abm, abm already exist in default remove bucket alias, useless added moretrees and flowers in depends.txt --- mods/watershed/depends.txt | 2 ++ mods/watershed/functions.lua | 15 --------------- mods/watershed/nodes.lua | 5 ----- 3 files changed, 2 insertions(+), 20 deletions(-) diff --git a/mods/watershed/depends.txt b/mods/watershed/depends.txt index 9fc96490..b0c88832 100755 --- a/mods/watershed/depends.txt +++ b/mods/watershed/depends.txt @@ -1,3 +1,5 @@ default bucket stairs +moretrees +flowers diff --git a/mods/watershed/functions.lua b/mods/watershed/functions.lua index ccf0cd8f..3847251d 100755 --- a/mods/watershed/functions.lua +++ b/mods/watershed/functions.lua @@ -181,21 +181,6 @@ if SINGLENODE then -- Spawn player function is useless in minetestforfun end --- ABM - --- Lava-water cooling - -minetest.register_abm({ - nodenames = {"group:lava"}, - neighbors = {"group:water"}, - interval = 11, - chance = 64, - action = function(pos, node, active_object_count, active_object_count_wider) - minetest.add_node(pos, {name="default:obsidian"}) - minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25}) - end, -}) - -- Appletree sapling function default.grow_tree(pos) diff --git a/mods/watershed/nodes.lua b/mods/watershed/nodes.lua index 22911169..08690f19 100755 --- a/mods/watershed/nodes.lua +++ b/mods/watershed/nodes.lua @@ -118,8 +118,3 @@ minetest.register_craft({ recipe = {"default:glass", "watershed:luxcrystal"}, }) --- Buckets - -minetest.register_alias("watershed:bucket_freshwater", "bucket:bucket_frashwater") - -minetest.register_alias("watershed:bucket_lava", "bucket:bucket_lava")