Fix a logic issue in Combo Challenge

pull/19/head
Ishaan Bhardwaj 2023-07-28 22:40:23 -04:00
parent b9e96406ca
commit affd5c6465
1 changed files with 6 additions and 3 deletions

View File

@ -78,10 +78,13 @@ function ComboChallenge:hold(inputs, ruleset, ihs)
table.insert(self.next_queue, self:getNextPiece(ruleset))
self.skips = self.skips - 1
if ihs then playSE("ihs")
else playSE("hold") end
self:onHold()
self:onEnterOrHold(inputs, ruleset)
if ihs then
playSE("ihs")
else
playSE("hold")
self:onEnterOrHold(inputs, ruleset)
end
end
function ComboChallenge:advanceOneFrame()