From 811d0caf86812642775bbe93c486c920f494e34b Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sat, 24 Sep 2011 02:18:48 -0500 Subject: [PATCH] attempt to fix ShowHoldJudgments --- Themes/_fallback/Scripts/03 Gameplay.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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()