diff options
author | Jean-Patrick Guerrero <jeanpatrick.guerrero@gmail.com> | 2016-03-17 00:31:11 +0100 |
---|---|---|
committer | Jean-Patrick Guerrero <jeanpatrick.guerrero@gmail.com> | 2016-03-17 00:31:11 +0100 |
commit | cf51f9defa8f3baa8e79c817aa4d07289b65690b (patch) | |
tree | 1fcfdbfca53bb9352ec948d94fab22876b116dc2 | |
parent | c129894942a2695f299ff0bc4c311ad1bcc7759f (diff) |
Small simplification
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ end function craftguide:get_formspec(stack, pagenum, item, recipe_num, filter, player_name) local inv_size = datas[player_name].size local npp, i, s = 8*3, 0, 0 - local pagemax = math.floor((inv_size - 1) / npp + 1) + local pagemax = math.ceil(inv_size / npp) if pagenum > pagemax then pagenum = 1 elseif pagenum == 0 then pagenum = pagemax end |