mirror of
https://github.com/minetest-mods/unified_inventory.git
synced 2025-06-29 23:10:45 +02:00
don't display the refill slot image if no creative priv/mode
(leftover from when it was part of the craft grid image) Also fixed a typo in the corresponding list[] element that made it not work.
This commit is contained in:
@ -194,8 +194,11 @@ ui.register_page("craft", {
|
||||
end
|
||||
|
||||
if ui.is_creative(player_name) then
|
||||
formspec[n] = string.format("image[%f,%f;%f,%f;ui_single_slot.png]",
|
||||
perplayer_formspec.craft_x - 2.5, perplayer_formspec.craft_y + 2.5,
|
||||
ui.imgscale, ui.imgscale)
|
||||
formspec[n+1] = string.format("label[%f,%f;%s]", craftx - 2.3, crafty + 2.4,F(S("Refill:")))
|
||||
formspec[n+2] = string.format("list[detached:%s;refill;main;%f,%f;1,1;]",
|
||||
formspec[n+2] = string.format("list[detached:%srefill;main;%f,%f;1,1;]",
|
||||
F(player_name), craftx - 2.35, crafty + 2.65)
|
||||
end
|
||||
return {formspec=table.concat(formspec)}
|
||||
|
Reference in New Issue
Block a user