mirror of
https://github.com/minetest-mods/unified_inventory.git
synced 2025-06-29 23:10:45 +02:00
using a table.copy() to pass the style tables around requires
setting-up items_per_page, standard_inv, and standard_inv_bg for both tables at init time.
This commit is contained in:
11
internal.lua
11
internal.lua
@ -22,16 +22,7 @@ end
|
||||
function ui.get_per_player_formspec(player_name)
|
||||
local draw_lite_mode = ui.lite_mode and not minetest.check_player_privs(player_name, {ui_full=true})
|
||||
|
||||
local style = table.copy(draw_lite_mode and ui.style_lite or ui.style_full)
|
||||
|
||||
style.items_per_page = style.pagecols * style.pagerows
|
||||
style.standard_inv = string.format("list[current_player;main;%f,%f;8,4;]",
|
||||
style.std_inv_x+0.15, style.std_inv_y+0.15)
|
||||
|
||||
style.standard_inv_bg = string.format("image[%f,%f;%f,%f;ui_main_inventory.png]",
|
||||
style.std_inv_x, style.std_inv_y,
|
||||
ui.imgscale*8, ui.imgscale*4)
|
||||
return style, draw_lite_mode
|
||||
return table.copy(draw_lite_mode and ui.style_lite or ui.style_full), draw_lite_mode
|
||||
end
|
||||
|
||||
function ui.get_formspec(player, page)
|
||||
|
Reference in New Issue
Block a user