Skip to content
Snippets Groups Projects
Commit 4124e360 authored by Rui's avatar Rui Committed by est31
Browse files

Minor tweaks __builtin:falling_node

parent 0903190b
No related branches found
No related tags found
No related merge requests found
......@@ -18,18 +18,6 @@ core.register_entity(":__builtin:falling_node", {
set_node = function(self, node)
self.node = node
local stack = ItemStack(node.name)
local itemtable = stack:to_table()
local itemname = nil
if itemtable then
itemname = stack:to_table().name
end
local item_texture = nil
local item_type = ""
if core.registered_items[itemname] then
item_texture = core.registered_items[itemname].inventory_image
item_type = core.registered_items[itemname].type
end
local prop = {
is_visible = true,
textures = {node.name},
......@@ -43,7 +31,9 @@ core.register_entity(":__builtin:falling_node", {
on_activate = function(self, staticdata)
self.object:set_armor_groups({immortal=1})
self:set_node({name=staticdata})
if staticdata then
self:set_node({name=staticdata})
end
end,
on_step = function(self, dtime)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment