Small changes.

This commit is contained in:
Ishaan Bhardwaj 2020-11-04 16:57:44 -05:00
parent 10833f2ec1
commit 4d2868b7b6
2 changed files with 4 additions and 4 deletions

View File

@ -107,7 +107,7 @@ function IntervalTrainingGame:updateSectionTimes(old_level, new_level)
end end
end end
function IntervalTrainingGame:drawGrid(ruleset) function IntervalTrainingGame:drawGrid()
self.grid:draw() self.grid:draw()
end end

View File

@ -16,7 +16,7 @@ MarathonA3Game.tagline = "The game gets faster way more quickly! Can you get all
function MarathonA3Game:new() function MarathonA3Game:new()
MarathonA3Game.super:new() MarathonA3Game.super:new()
self.speed_level = 0 self.speed_level = 0
self.roll_frames = 0 self.roll_frames = 0
self.combo = 1 self.combo = 1
@ -218,7 +218,7 @@ function MarathonA3Game:updateSectionTimes(old_level, new_level)
else else
table.insert(self.section_status, "none") table.insert(self.section_status, "none")
end end
elseif section <= 9 and old_level % 100 < 70 and new_level % 100 >= 70 then elseif old_level % 100 < 70 and new_level % 100 >= 70 then
-- record section 70 time -- record section 70 time
section_70_time = self.frames - self.section_start_time section_70_time = self.frames - self.section_start_time
table.insert(self.section_70_times, section_70_time) table.insert(self.section_70_times, section_70_time)
@ -431,7 +431,7 @@ function MarathonA3Game:drawScoringInfo()
current_x = section_70_x current_x = section_70_x
end end
love.graphics.printf(formatTime(self.frames - self.section_start_time), current_x, 40 + 20 * current_section, 90, "left") if not self.clear then love.graphics.printf(formatTime(self.frames - self.section_start_time), current_x, 40 + 20 * current_section, 90, "left") end
if(self.coolregret_timer > 0) then if(self.coolregret_timer > 0) then
love.graphics.printf(self.coolregret_message, 64, 400, 160, "center") love.graphics.printf(self.coolregret_message, 64, 400, 160, "center")