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:
Vanessa Dannenberg
2021-03-08 09:14:21 -05:00
parent 6d892dda5b
commit 8e94d86420
2 changed files with 4 additions and 9 deletions

View File

@ -53,14 +53,6 @@ function ui.get_formspec(player, page)
formspec[3] = ui.standard_background
end
if ui.is_creative(player_name)
and page == "craft" then -- add the "Refill" slot.
formspec[n] = string.format("image[%f,%f;%f,%f;ui_single_slot.png]",
ui_peruser.craft_x - 2.5, ui_peruser.craft_y + 2.5,
ui.imgscale, ui.imgscale)
n = n+1
end
local perplayer_formspec = ui.get_per_player_formspec(player_name)
local fsdata = pagedef.get_formspec(player, perplayer_formspec)