From efc2bacb0928a51ac362007733bbcb3a57639529 Mon Sep 17 00:00:00 2001 From: Chris Bradley <1029chris@gmail.com> Date: Sun, 20 Feb 2022 18:39:03 -0800 Subject: Win screen song! and fix to scroll speed, other tweaks --- waves.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'waves.lua') diff --git a/waves.lua b/waves.lua index 0a475a2..fd27cdb 100644 --- a/waves.lua +++ b/waves.lua @@ -281,7 +281,7 @@ wave[19] = { --ending score screen wave[20] = { - delay = 4, + delay = 5, start = function() menuscroll = 128 --so that the score menu can scroll in if not coopmode and highscore0 < currentscore then @@ -292,7 +292,7 @@ wave[20] = { end, conditions = function() end, - song = 31, + song = 35, } foreach(wave, function(wave) if not wave.conditions then wave.conditions = function() if #enemies < 1 then return true end end end end) --if there are no conditons for a wave, give them one. look at all those ends!!!! -- cgit