Eliminate crumbly, cracky, snappy and choppy fully
This commit is contained in:
parent
4ec6f5a3ec
commit
6b3db0ae72
7 changed files with 37 additions and 23 deletions
|
@ -84,7 +84,7 @@ minetest.register_entity("drippingwater:drop_lava", {
|
|||
--Create drop
|
||||
|
||||
minetest.register_abm(
|
||||
{nodenames = {"group:crumbly", "group:cracky"},
|
||||
{nodenames = {"group:solid"},
|
||||
neighbors = {"group:water"},
|
||||
interval = 2,
|
||||
chance = 22,
|
||||
|
@ -100,7 +100,7 @@ minetest.register_abm(
|
|||
--Create lava drop
|
||||
|
||||
minetest.register_abm(
|
||||
{nodenames = {"group:crumbly", "group:cracky"},
|
||||
{nodenames = {"group:solid"},
|
||||
neighbors = {"group:lava"},
|
||||
interval = 2,
|
||||
chance = 22,
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
Dripping Water Mod
|
||||
by kddekadenz
|
||||
|
||||
modified for MineClone 2 by Wuzzy
|
||||
|
||||
|
||||
Installing instructions:
|
||||
|
||||
|
@ -11,8 +13,7 @@ Installing instructions:
|
|||
|
||||
Manual:
|
||||
|
||||
-> drops are generated rarely under crumbly nodes (dirt,grass,sandstone)
|
||||
-> waterdrops are generated under cloudstone massively
|
||||
-> drops are generated rarely under solid nodes
|
||||
-> they will stay some time at the generated block and than they fall down
|
||||
-> when they collide with the ground, a sound is played and they are destroyed
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue