Adjusted how DAS cut subtracts from the counter

pull/16/head
Ishaan Bhardwaj 2021-02-03 16:50:03 -05:00
parent 81677221f1
commit 5a074f77cf
2 changed files with 9 additions and 5 deletions

View File

@ -80,9 +80,13 @@ end
function table.contains(table, element)
for _, value in pairs(table) do
if value == element then
return true
end
if value == element then
return true
end
end
return false
end
end
function clamp(a, b, c)
return math.min(a, math.max(b, c))
end

View File

@ -207,7 +207,7 @@ function GameMode:update(inputs, ruleset)
) then
self.das.frames = math.max(
self.das.frames - self:getDasCutDelay(),
-self:getDasCutDelay()
-(self:getDasCutDelay() + 1)
)
end