aboutsummaryrefslogtreecommitdiff
path: root/stairsplus/microblocks.lua
diff options
context:
space:
mode:
authorThomas--S <Thomas--S@users.noreply.github.com>2016-06-17 21:15:02 +0200
committerAuke Kok <sofar+github@foo-projects.org>2016-06-17 12:15:02 -0700
commitdb93277a988001bcce2a2d10999897be7b8ee017 (patch)
tree02c7ddb28d05202a427cb8fa2259cb660a434cb0 /stairsplus/microblocks.lua
parent30fba0ea40edddb2ccff5dc07b8acef4136df4f1 (diff)
downloadmoreblocks-db93277a988001bcce2a2d10999897be7b8ee017.tar.gz
moreblocks-db93277a988001bcce2a2d10999897be7b8ee017.tar.bz2
moreblocks-db93277a988001bcce2a2d10999897be7b8ee017.zip
Add support for the alternative drop syntax (#46)
Until now, when the moreblocks node for a node with the alternative drop syntax were registered, the game crashed.
Diffstat (limited to 'stairsplus/microblocks.lua')
-rw-r--r--stairsplus/microblocks.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/stairsplus/microblocks.lua b/stairsplus/microblocks.lua
index 680b3ca..7902209 100644
--- a/stairsplus/microblocks.lua
+++ b/stairsplus/microblocks.lua
@@ -77,7 +77,7 @@ function stairsplus:register_micro(modname, subname, recipeitem, fields)
def.on_place = minetest.rotate_node
def.groups = stairsplus:prepare_groups(fields.groups)
def.description = desc
- if fields.drop then
+ if fields.drop and not type(fields.drop) == "table" then
def.drop = modname.. ":micro_" ..fields.drop..alternate
end
minetest.register_node(":" ..modname.. ":micro_" ..subname..alternate, def)