From 409801a17f34a3edfa001569e1ee8ab2c6f6b622 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 16 Jul 2011 19:27:33 -0400 Subject: [PATCH] Trying this again for hold graphic judgments. --- Themes/_fallback/Scripts/03 Gameplay.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Themes/_fallback/Scripts/03 Gameplay.lua b/Themes/_fallback/Scripts/03 Gameplay.lua index 3fd0d83e4b..629453ff5a 100644 --- a/Themes/_fallback/Scripts/03 Gameplay.lua +++ b/Themes/_fallback/Scripts/03 Gameplay.lua @@ -187,7 +187,11 @@ function HoldTiming() end function ShowHoldJudgments() - return not GAMESTATE:GetCurrentGame():GetName() == "pump" + if GAMESTATE:GetCurrentGame():GetName() == "pump" then + return false + else + return true + end end function HoldHeadStep() @@ -271,4 +275,4 @@ end function ComboUnderField() return GetUserPrefB("UserPrefComboUnderField") -end \ No newline at end of file +end