diff options
author | Calinou <calinou@opmbx.org> | 2014-05-10 21:25:10 +0200 |
---|---|---|
committer | Calinou <calinou@opmbx.org> | 2014-05-10 21:25:10 +0200 |
commit | 2bf5da716d7c01cdfed74a29de665923651d522e (patch) | |
tree | 89a9c25e0cd079813ef8d4b30999fe83773d2fd3 | |
parent | 9550268c4957f2f8c5e74ee2ef972a4d3d578bc9 (diff) |
Put comment before the line.
-rw-r--r-- | stairsplus/registrations.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stairsplus/registrations.lua b/stairsplus/registrations.lua index c5362d9..491c72f 100644 --- a/stairsplus/registrations.lua +++ b/stairsplus/registrations.lua @@ -12,7 +12,7 @@ local default_nodes = { "bronzeblock", "diamondblock", "desert_stone", - -- "desert_cobble", Does not work in minetest_game. +-- "desert_cobble", -- Does not work in minetest_game. "glass", "tree", "wood", @@ -30,7 +30,8 @@ for _, name in pairs(default_nodes) do local ndef = minetest.registered_nodes[nodename] local groups = {} for k, v in pairs(ndef.groups) - do if k ~= "wood" and k ~= "stone" then -- Ignore wood and stone groups to not make them usable in crafting. + -- Ignore wood and stone groups to not make them usable in crafting. + do if k ~= "wood" and k ~= "stone" then groups[k] = v end end |