From 3262d90864267fe8e22ce1ae6730c63a85f84125 Mon Sep 17 00:00:00 2001 From: kaadmy Date: Mon, 14 Nov 2016 08:50:07 -0800 Subject: [PATCH] Make the crafting guide pages loop --- mods/craftingguide/init.lua | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/mods/craftingguide/init.lua b/mods/craftingguide/init.lua index 88dd25c..093e3ca 100644 --- a/mods/craftingguide/init.lua +++ b/mods/craftingguide/init.lua @@ -96,10 +96,18 @@ local function receive_fields(player, form_name, fields) local max_pages = math.floor(#craftingguide.itemlist / page_size) + 1 - if fields.guide_next_recipe and itemno < #recipes then - itemno = itemno + 1 - elseif fields.guide_prev_recipe and itemno > 1 then - itemno = itemno - 1 + if fields.guide_next_recipe then + if itemno < #recipes then + itemno = itemno + 1 + else + itemno = 1 + end + elseif fields.guide_prev_recipe then + if itemno < 1 then + itemno = #recipes + else + itemno = itemno - 1 + end end