Skip to content

Commit

Permalink
more debugging....... yet again!!!!!!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
wsor4035 committed Jul 28, 2024
1 parent b22db4e commit 06e6a8d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mods/fl_stairs/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,11 @@ end)

minetest.register_on_mods_loaded(function()
--minetest.after(0, function()
for _, node in pairs(minetest.registered_items) do
if node.name == "fl_stone:basalt_block" then
minetest.log("error", "stair loop starting!!!")
for nodename, node in pairs(minetest.registered_items) do
if nodename == "fl_stone:basalt_block" then
minetest.log("error", "basalt node found")
minetest.log("error", dump(node))
end
if node.groups.stairable == 1 then
if node.name == "fl_stone:basalt_block" then
Expand Down

0 comments on commit 06e6a8d

Please sign in to comment.