Skip to content

Commit

Permalink
hail marry part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
wsor4035 committed Jul 28, 2024
1 parent 5137649 commit ab215fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/fl_stairs/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,14 @@ minetest.register_on_mods_loaded(function()
minetest.log("error", "basalt node found")
minetest.log("error", dump(node))
end
if node.groups.stairable == 1 then
if node.groups and node.groups.stairable == 1 then
if node.name == "fl_stone:basalt_block" then
minetest.log("error", "basalt node stair function calling")
end

fl_stairs.register_stairslab(node.name)
end
if node.groups.wallable == 1 then
if node.groups and node.groups.wallable == 1 then
fl_stairs.register_wall(node.name)
end
end
Expand Down

0 comments on commit ab215fc

Please sign in to comment.