diff options
author | Wuzzy <Wuzzy2@mail.ru> | 2018-05-29 20:37:54 +0200 |
---|---|---|
committer | Wuzzy <Wuzzy2@mail.ru> | 2018-05-29 20:37:54 +0200 |
commit | ec3ad1b2d7f363442f6faf8c5ce88299cd04bdd2 (patch) | |
tree | 0dd72f89f2259ebfda1d1f000cd1fa41d10bda84 /init.lua | |
parent | b6648a454183a1e2c44182ef03bdf13a305d6b31 (diff) |
Parse group fake_liquid=1origin/masterorigin/HEAD
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -592,7 +592,7 @@ doc.add_category("nodes", { formstring = entry_image(data) datastring = factoids_header(data, "nodes") - local liquid = data.def.liquidtype ~= "none" + local liquid = data.def.liquidtype ~= "none" and minetest.get_item_group(data.itemstring, "fake_liquid") == 0 if not forbidden_core_factoids.basics then datastring = datastring .. S("Collidable: @1", yesno(data.def.walkable)) .. "\n" if data.def.pointable == true then |