We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3176dae commit ab9f9ceCopy full SHA for ab9f9ce
builtin/game/falling.lua
@@ -130,7 +130,7 @@ core.register_entity(":__builtin:falling_node", {
130
-- Set collision box (certain nodeboxes only for now)
131
local nb_types = {fixed=true, leveled=true, connected=true}
132
if def.drawtype == "nodebox" and def.node_box and
133
- nb_types[def.node_box.type] then
+ nb_types[def.node_box.type] and def.node_box.fixed then
134
local box = table.copy(def.node_box.fixed)
135
if type(box[1]) == "table" then
136
box = #box == 1 and box[1] or nil -- We can only use a single box
0 commit comments