summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortenplus1 <kinsellaja@yahoo.com>2014-12-10 10:16:58 +0000
committertenplus1 <kinsellaja@yahoo.com>2014-12-10 10:16:58 +0000
commit4c3e8741cad55be7509c49f908ca796d6bba2705 (patch)
tree0d54bf52708334d292024bbb6ab90c06698334d0
parentd82d835d4f160e6507e2bf206dd76477905b50cc (diff)
Updated water routines to work with latest 0.4.10 dev
-rw-r--r--README.md5
-rw-r--r--water.lua7
2 files changed, 9 insertions, 3 deletions
diff --git a/README.md b/README.md
index 78a09a9..8dd8ebe 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,11 @@ Ethereal v7 Mapgen mod for Minetest
Changelog:
+1.13
+
+Changed melting feature to work with 0.4.10 dev now that group:hot and group:melt has been removed
+
+
1.12
Added ability to disable biomes in the init.lua file by setting to 1 (enable) or 0 (disable)
diff --git a/water.lua b/water.lua
index 4ea4f48..7de32ec 100644
--- a/water.lua
+++ b/water.lua
@@ -75,9 +75,10 @@ minetest.register_abm({
-- If Heat Source near Ice or Snow then melt
minetest.register_abm({
- --nodenames = {"default:ice", "default:snowblock", "default:snow", "default:dirt_with_snow"},
- nodenames = {"group:melts", "default:dirt_with_snow"},
- neighbors = {"group:hot"},
+ nodenames = {"default:ice", "default:snowblock", "default:snow", "default:dirt_with_snow", "ethereal:snowbrick", "ethereal:icebrick"},
+ --nodenames = {"group:melts", "default:dirt_with_snow"},
+ --neighbors = {"group:hot"},
+ neighbors = {"fire:basic_fire", "default:lava_source", "default:lava_flowing", "default:furnace_active", "default:torch"},
interval = 10,
chance = 2,
action = function(pos, node, active_object_count, active_object_count_wider)