mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-22 08:39:03 -06:00
Changed the 2-second rule to give the cool at exactly 2 seconds.
This commit is contained in:
parent
769b5043e3
commit
c434a3406b
@ -354,7 +354,7 @@ function Marathon2020Game:updateSectionTimes(old_level, new_level)
|
||||
|
||||
if (
|
||||
self.section_status[section - 1] == "cool" and
|
||||
self.secondary_section_times[section] < self.secondary_section_times[section - 1] + 120 and
|
||||
self.secondary_section_times[section] <= self.secondary_section_times[section - 1] + 120 and
|
||||
self.secondary_section_times[section] < cool_cutoffs[self.delay_level]
|
||||
) then
|
||||
sectionCool(section)
|
||||
|
@ -219,7 +219,7 @@ function MarathonA3Game:updateSectionTimes(old_level, new_level)
|
||||
table.insert(self.secondary_section_times, section_70_time)
|
||||
|
||||
if section <= 9 and self.section_status[section - 1] == "cool" and
|
||||
self.secondary_section_times[section] < self.secondary_section_times[section - 1] + 120 then
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user