diff options
author | John Cole <john@jhcole.com> | 2016-07-12 15:49:43 -0400 |
---|---|---|
committer | Auke Kok <sofar+github@foo-projects.org> | 2016-07-12 12:49:43 -0700 |
commit | 26a5273dd69e99b904880ebc69a2764694db3c41 (patch) | |
tree | 8124e21130164dd2dafeafb3e6f34983dfcf3fc2 /stairsplus/panels.lua | |
parent | db93277a988001bcce2a2d10999897be7b8ee017 (diff) |
Fix drop logic. (#49)
The code
not type(fields.drop) == "table"
was always false because it compares a boolean with a string,
not (type(fields.drop) == "table")
is the intended logic.
Diffstat (limited to 'stairsplus/panels.lua')
-rw-r--r-- | stairsplus/panels.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stairsplus/panels.lua b/stairsplus/panels.lua index dc1d67d..ab6ef83 100644 --- a/stairsplus/panels.lua +++ b/stairsplus/panels.lua @@ -77,7 +77,7 @@ function stairsplus:register_panel(modname, subname, recipeitem, fields) def.on_place = minetest.rotate_node def.description = desc def.groups = stairsplus:prepare_groups(fields.groups) - if fields.drop and not type(fields.drop) == "table" then + if fields.drop and not (type(fields.drop) == "table") then def.drop = modname.. ":panel_" ..fields.drop..alternate end minetest.register_node(":" ..modname.. ":panel_" ..subname..alternate, def) |