From f1be399a4ba9a834b2cd2fcedd95c961f4e77594 Mon Sep 17 00:00:00 2001 From: LictorTheEternal <42551049+LictorTheEternal@users.noreply.github.com> Date: Thu, 23 Jul 2026 16:22:52 -0400 Subject: [PATCH] Update RingOfFire.lua Boss every 10 waves This change reduces the number of waves players must wait to spawn the 1st boss down from 30 waves to 10 waves. This change will also reduce the number of additional waves players must wait to spawn an additional boss from 15 waves down to 10 waves. --- acrylia/encounters/RingOfFire.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acrylia/encounters/RingOfFire.lua b/acrylia/encounters/RingOfFire.lua index 8cfdb179..49279ef1 100644 --- a/acrylia/encounters/RingOfFire.lua +++ b/acrylia/encounters/RingOfFire.lua @@ -137,8 +137,8 @@ function SpawnWave() local roll = math.random(100); - -- big boss every 15 waves starting at wave 30 - if ( wave > 29 and wave % 15 == 0 ) then + -- big boss every 10 waves starting at wave 10 + if ( wave > 9 and wave % 10 == 0 ) then local boss = 1; -- warmonger