Skip to content

Commit 4124e36

Browse files
rui914est31
authored andcommittedSep 1, 2015
Minor tweaks __builtin:falling_node
1 parent 0903190 commit 4124e36

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed
 

‎builtin/game/falling.lua

+3-13
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,6 @@ core.register_entity(":__builtin:falling_node", {
1818

1919
set_node = function(self, node)
2020
self.node = node
21-
local stack = ItemStack(node.name)
22-
local itemtable = stack:to_table()
23-
local itemname = nil
24-
if itemtable then
25-
itemname = stack:to_table().name
26-
end
27-
local item_texture = nil
28-
local item_type = ""
29-
if core.registered_items[itemname] then
30-
item_texture = core.registered_items[itemname].inventory_image
31-
item_type = core.registered_items[itemname].type
32-
end
3321
local prop = {
3422
is_visible = true,
3523
textures = {node.name},
@@ -43,7 +31,9 @@ core.register_entity(":__builtin:falling_node", {
4331

4432
on_activate = function(self, staticdata)
4533
self.object:set_armor_groups({immortal=1})
46-
self:set_node({name=staticdata})
34+
if staticdata then
35+
self:set_node({name=staticdata})
36+
end
4737
end,
4838

4939
on_step = function(self, dtime)

0 commit comments

Comments
 (0)
Please sign in to comment.