Fix error when clicking unknown item in the recipe (#255)
Some checks failed
Check & Release / lint (push) Has been cancelled
Some checks failed
Check & Release / lint (push) Has been cancelled
This commit is contained in:
parent
e132a17523
commit
43cf0d8e7e
@ -329,7 +329,7 @@ ui.register_page("craftguide", {
|
||||
local giveme_form =
|
||||
"label[" .. (give_x + 0.1) .. "," .. (craftguidey + 2.7) .. ";" .. F(S("Give me:")) .. "]" ..
|
||||
"button[" .. (give_x) .. "," .. (craftguidey + 2.9) .. ";0.75,0.5;craftguide_giveme_1;1]"
|
||||
if item_def.type ~= "tool" then
|
||||
if item_def and item_def.type ~= "tool" then
|
||||
giveme_form = giveme_form ..
|
||||
"button[" .. (give_x + 0.8) .. "," .. (craftguidey + 2.9) .. ";0.75,0.5;craftguide_giveme_10;10]" ..
|
||||
"button[" .. (give_x + 1.6) .. "," .. (craftguidey + 2.9) .. ";0.75,0.5;craftguide_giveme_99;99]"
|
||||
|
Loading…
x
Reference in New Issue
Block a user