forked from VoxeLibre/VoxeLibre
Remove hardcoded one element array
This commit is contained in:
parent
5f0ad98dae
commit
ca37ce5744
|
@ -5,14 +5,6 @@
|
||||||
|
|
||||||
local S = minetest.get_translator("mcl_stonecutter")
|
local S = minetest.get_translator("mcl_stonecutter")
|
||||||
|
|
||||||
-- compatible items for the stonecutter
|
|
||||||
local compaitble_items = {
|
|
||||||
}
|
|
||||||
|
|
||||||
local FMT = {
|
|
||||||
item_image_button = "item_image_button[%f,%f;%f,%f;%s;%s;%s]",
|
|
||||||
}
|
|
||||||
|
|
||||||
-- formspecs
|
-- formspecs
|
||||||
local function show_stonecutter_formspec(items, input)
|
local function show_stonecutter_formspec(items, input)
|
||||||
local cut_items = {}
|
local cut_items = {}
|
||||||
|
@ -27,7 +19,7 @@ local function show_stonecutter_formspec(items, input)
|
||||||
y_len = y_len + 1
|
y_len = y_len + 1
|
||||||
x_len = 1
|
x_len = 1
|
||||||
end
|
end
|
||||||
local test = string.format(FMT.item_image_button,x_len+1,y_len,1,1, value, "item_button", value)
|
local test = string.format("item_image_button[%f,%f;%f,%f;%s;%s;%s]",x_len+1,y_len,1,1, value, "item_button", value)
|
||||||
cut_items[index] = test
|
cut_items[index] = test
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue