diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-01-21 14:59:28 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-01-21 14:59:28 +0000 |
commit | 87031b60518731f62dbce0ffb1601b0c34d506c9 (patch) | |
tree | 707258c7ca090302fbbc7114966d551c849881da /init.lua | |
parent | bd0fae584c0b0c3a04d41608acb4dfaf77554d91 (diff) |
Optimize code, allfaces leaves by default, leaves walkable by default
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ --[[
- Minetest Ethereal Mod 1.19 (13th December 2015)
+ Minetest Ethereal Mod 1.19 (21st January 2016)
Created by ChinChow
@@ -9,7 +9,8 @@ ]]
ethereal = {}
-ethereal.leaftype = 0 -- 0 for 2D plantlike, 1 for 3D allfaces
+ethereal.leaftype = 1 -- 0 for 2D plantlike, 1 for 3D allfaces
+ethereal.leafwalk = true -- true for walkable leaves, false to fall through
-- Set following to 1 to enable biome or 0 to disable
ethereal.glacier = 1 -- Ice glaciers with snow
|