Skip to content

Commit

Permalink
Change Huolon respawn to 20 min
Browse files Browse the repository at this point in the history
  • Loading branch information
fstenstrom committed Nov 9, 2024
1 parent 5e1b8af commit 6f790ba
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions BossData.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ local MIN_RESPAWN_SHA = MinToSec(10);
local MAX_RESPAWN_SHA = MinToSec(20);
local MIN_RESPAWN_NALAK = MIN_RESPAWN_SHA;
local MAX_RESPAWN_NALAK = MAX_RESPAWN_SHA;
local MIN_RESPAWN_HUOLON = MinToSec(30);
local MAX_RESPAWN_HUOLON = MinToSec(60);
local MIN_RESPAWN_ZANDALARI_WARBRINGER = MinToSec(30);
local MAX_RESPAWN_ZANDALARI_WARBRINGER = MinToSec(60);

Expand Down Expand Up @@ -147,8 +145,8 @@ local tracked_bosses = {
ids = {73167},
is_saved_fcn = NeverSaved,
soundfile = Sound.SOUND_FILE_DEFAULT,
min_respawn = MIN_RESPAWN_HUOLON,
max_respawn = MAX_RESPAWN_HUOLON,
min_respawn = MinToSec(20) - 1, -- Then boss is unattackable for 1 min... Could change to 21.
max_respawn = MinToSec(20) - 1,
random_spawn_time = true,
auto_announce = true,
map_id = 554,
Expand Down

0 comments on commit 6f790ba

Please sign in to comment.