Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions acrylia/encounters/RingOfFire.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down