mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-22 17:39:03 -06:00
Adjusted how DAS cut subtracts from the counter
This commit is contained in:
parent
81677221f1
commit
5a074f77cf
12
funcs.lua
12
funcs.lua
@ -80,9 +80,13 @@ end
|
|||||||
|
|
||||||
function table.contains(table, element)
|
function table.contains(table, element)
|
||||||
for _, value in pairs(table) do
|
for _, value in pairs(table) do
|
||||||
if value == element then
|
if value == element then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function clamp(a, b, c)
|
||||||
|
return math.min(a, math.max(b, c))
|
||||||
|
end
|
@ -207,7 +207,7 @@ function GameMode:update(inputs, ruleset)
|
|||||||
) then
|
) then
|
||||||
self.das.frames = math.max(
|
self.das.frames = math.max(
|
||||||
self.das.frames - self:getDasCutDelay(),
|
self.das.frames - self:getDasCutDelay(),
|
||||||
-self:getDasCutDelay()
|
-(self:getDasCutDelay() + 1)
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user