fix a3 cools

pull/25/head
Kirby703 2021-07-28 18:38:22 -04:00 committed by GitHub
parent 33b3ad2889
commit 4243d6b2ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 8 deletions

View File

@ -218,13 +218,8 @@ function MarathonA3Game:updateSectionTimes(old_level, new_level)
section_70_time = self.frames - self.section_start_time section_70_time = self.frames - self.section_start_time
table.insert(self.secondary_section_times, section_70_time) table.insert(self.secondary_section_times, section_70_time)
if section <= 9 and self.section_status[section - 1] == "cool" and if section <= 9 and self.secondary_section_times[section] < cool_cutoffs[section] and
self.secondary_section_times[section] <= self.secondary_section_times[section - 1] + 120 then (section == 1 or self.secondary_section_times[section] <= self.secondary_section_times[section - 1] + 120) then
self.section_cool = true
self.coolregret_message = "COOL!!"
self.coolregret_timer = 300
elseif self.section_status[section - 1] == "cool" then self.section_cool = false
elseif section <= 9 and self.secondary_section_times[section] < cool_cutoffs[section] then
self.section_cool = true self.section_cool = true
self.coolregret_message = "COOL!!" self.coolregret_message = "COOL!!"
self.coolregret_timer = 300 self.coolregret_timer = 300