From a0a5829d843ce9cb9da7d4b233508bca68a6c437 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 25 Oct 2024 19:03:26 +0200 Subject: [PATCH] Fix handling of inverting flags --- itemcontroller.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 6dd746d..3f8e0ef 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -183,16 +183,17 @@ local PAGES = { local function composeSortFuncs(...) local funcs = {...} + local invert = false local compose = nil for i=#funcs,1,-1 do local current = funcs[i] - local invert = false if type(current) == "boolean" then invert = current - i = i - 1 - current = funcs[i] + goto continue end compose = current(invert, compose) + invert = false + ::continue:: end return compose end