Changed mode select DAS to 15/4 (old 24/6)

This commit is contained in:
Ishaan Bhardwaj 2021-09-16 18:05:38 -04:00
parent fe162ed215
commit 42375cb2b8

View File

@ -51,9 +51,9 @@ function ModeSelectScene:update()
self.das = 0 self.das = 0
end end
if self.das >= 24 then if self.das >= 15 then
self:changeOption(self.das_up and -1 or 1) self:changeOption(self.das_up and -1 or 1)
self.das = self.das * 0.75 self.das = self.das - 4
end end
end end