Skip to content

Commit

Permalink
coding style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
imre84 committed Mar 31, 2024
1 parent cc6b859 commit 5cc2b46
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions mods/bones/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local function is_owner(pos, name)
end


local function appendmulti(tbl,...)
local function appendmulti(tbl, ...)
for _, v in pairs({...}) do
table.insert(tbl, v)
end
Expand All @@ -43,12 +43,13 @@ local function get_bones_formspec_for_size(numitems)
scroll=true
end
local output={}
appendmulti(output, "size[", 8.5, ",", 9, "]")
appendmulti(output, "size[", 8.5, ", ", 9, "]")
if scroll then
local row_05=13.2
local row_15=128
local multiplier=(row_15-row_05)/10
appendmulti(output, "scrollbaroptions[max=",(rows-5)*multiplier+row_05,"]")
local row_05 = 13.2
local row_15 = 128
local multiplier = (row_15 - row_05) / 10
local scrollmax = (rows - 5) * multiplier + row_05
appendmulti(output, "scrollbaroptions[max=", scrollmax, "]")
appendmulti(output, "scrollbar[8,0;0.3,4.5;vertical;bones_scroll;0]",
"scroll_container[0,0.3;10.3,4.95;bones_scroll;vertical;0.1]")
end
Expand All @@ -69,7 +70,7 @@ local share_bones_time = tonumber(minetest.settings:get("share_bones_time")) or
local share_bones_time_early = tonumber(minetest.settings:get("share_bones_time_early")) or share_bones_time / 4


local function find_next_empty(inv,listname,start)
local function find_next_empty(inv, listname, start)
while start <= inv:get_size(listname) do
if inv:get_stack(listname, start):get_count() == 0 then
return start
Expand Down Expand Up @@ -197,7 +198,7 @@ local bones_def = {
if player_inv:room_for_item("main", {name = "bones:bones"}) then
player_inv:add_item("main", {name = "bones:bones"})
else
minetest.add_item(pos,"bones:bones")
minetest.add_item(pos, "bones:bones")
end
minetest.remove_node(pos)
else
Expand Down Expand Up @@ -300,7 +301,7 @@ bones.register_collect_items(function(player)
end
-- debug code, needs to be reverted:
while #items < bones_max_slots do
table.insert(items,ItemStack("bucket:bucket_lava"))
table.insert(items, ItemStack("bucket:bucket_lava"))
end
return items
end)
Expand Down

0 comments on commit 5cc2b46

Please sign in to comment.