Fix a typo causing crashes in Survival 2020 level 1500+

pull/76/head
infinifen 2023-07-22 13:21:21 +02:00
parent 39e9dc3303
commit ba6f5bb837
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ end
Survival2020Game.opacityFunction = function(age)
if age > 300 then return 0
else return 1 - Math.max(age - 240, 0) / 60 end
else return 1 - math.max(age - 240, 0) / 60 end
end
function Survival2020Game:drawGrid()