From 385dbc6e273d7e3790604ac82d05f816c09cb8ae Mon Sep 17 00:00:00 2001 From: gastank <42421688+gastank@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:00:23 -0700 Subject: [PATCH] [Gear] update concoction kiss of death shared cooldown [skip ci] --- engine/player/unique_gear_thewarwithin.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/player/unique_gear_thewarwithin.cpp b/engine/player/unique_gear_thewarwithin.cpp index b85fd315be0..2464dcff103 100644 --- a/engine/player/unique_gear_thewarwithin.cpp +++ b/engine/player/unique_gear_thewarwithin.cpp @@ -4587,6 +4587,9 @@ void concoction_kiss_of_death( special_effect_t& effect ) } }; + // TODO: the driver has two cooldown categories, 1141 for the on-use and 2338 for the charge. currently the generation + // script prioritizes the charge category so we manually set it here until the script can be adjusted. + effect.cooldown_category_ = 1141; effect.custom_buff = create_buff( effect.player, effect.driver(), effect.item ); }