Hide “To crafting grid:” for crafts with size > 3

This commit is contained in:
Wuzzy 2016-08-07 15:08:40 +02:00
parent 2ef76af687
commit 3bc3fae648
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ unified_inventory.register_page("craftguide", {
..";"..minetest.formspec_escape(S("This recipe is too\nlarge to be displayed.")).."]"
end
if craft_type.uses_crafting_grid then
if craft_type.uses_crafting_grid and display_size.width <= 3 then
formspec = formspec.."label[0,"..(formspecy + 0.9)..";" .. F("To craft grid:") .. "]"
.."button[0, "..(formspecy + 1.5)..";0.6,0.5;craftguide_craft_1;1]"
.."button[0.6,"..(formspecy + 1.5)..";0.7,0.5;craftguide_craft_10;10]"