summaryrefslogtreecommitdiff
path: root/src/nodedef.h
diff options
context:
space:
mode:
authorIlya Zhuravlev <zhuravlevilya@ya.ru>2012-09-07 20:48:12 +0400
committerIlya Zhuravlev <zhuravlevilya@ya.ru>2012-09-07 20:48:12 +0400
commit926830e0df7b95d4e53c917db07236ef3e19e991 (patch)
tree8c99c4fa73b837b80e57f9246ff0c82632507953 /src/nodedef.h
parent9696ed31a41b5e3ca85bad4a29c190a0d25c7752 (diff)
downloadminetest-926830e0df7b95d4e53c917db07236ef3e19e991.tar.gz
minetest-926830e0df7b95d4e53c917db07236ef3e19e991.tar.bz2
minetest-926830e0df7b95d4e53c917db07236ef3e19e991.zip
Add liquid_renewable property.
Diffstat (limited to 'src/nodedef.h')
-rw-r--r--src/nodedef.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nodedef.h b/src/nodedef.h
index 7c6931834..4ff6c6b48 100644
--- a/src/nodedef.h
+++ b/src/nodedef.h
@@ -209,6 +209,8 @@ struct ContentFeatures
// 1 giving almost instantaneous propagation and 7 being
// the slowest possible
u8 liquid_viscosity;
+ // Is liquid renewable (new liquid source will be created between 2 existing)
+ bool liquid_renewable;
// Amount of light the node emits
u8 light_source;
u32 damage_per_second;