diff --git a/Themes/_fallback/Scripts/03 Gameplay.lua b/Themes/_fallback/Scripts/03 Gameplay.lua index 12254b9632..ed245c2ec7 100644 --- a/Themes/_fallback/Scripts/03 Gameplay.lua +++ b/Themes/_fallback/Scripts/03 Gameplay.lua @@ -181,11 +181,13 @@ function HoldTiming() end function ShowHoldJudgments() - return not GAMESTATE:GetCurrentGame():GetName() == "pump" + local isPump = GAMESTATE:GetCurrentGame():GetName() == "pump" + return isPump and false or true end function HoldHeadStep() - return not GAMESTATE:GetCurrentGame():GetName() == "pump" + local isPump = GAMESTATE:GetCurrentGame():GetName() == "pump" + return isPump and false or true end function InitialHoldLife()