1
0
mirror of https://github.com/Sokomine/cottages.git synced 2025-07-07 18:30:27 +02:00

stylua fixes

This commit is contained in:
flux
2023-01-22 19:36:23 -08:00
parent b58368ea6a
commit 0157649fa5
50 changed files with 945 additions and 980 deletions

View File

@ -4,8 +4,8 @@ if ci.cotton then
minetest.register_craft({
output = "cottages:rope",
recipe = {
{ci.cotton, ci.cotton, ci.cotton}
}
{ ci.cotton, ci.cotton, ci.cotton },
},
})
end
@ -13,7 +13,7 @@ if ci.ladder and ci.rail then
minetest.register_craft({
output = "cottages:ladder_with_rope_and_rail 3",
recipe = {
{ci.ladder, "cottages:rope", ci.rail}
}
{ ci.ladder, "cottages:rope", ci.rail },
},
})
end

View File

@ -1,3 +1,2 @@
cottages.dofile("modules", "mining", "nodes")
cottages.dofile("modules", "mining", "crafts")