attempt to fix ShowHoldJudgments

This commit is contained in:
AJ Kelly
2011-09-24 02:18:48 -05:00
parent dbba5bd934
commit 811d0caf86
+4 -2
View File
@@ -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()