From 872d7412555463c6f431a9f9589c8ca9f4a03f04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Hillerstr=C3=B6m?= Date: Sun, 19 Jan 2025 18:30:05 +0100 Subject: [PATCH] [DK] Enable all item swap slots for FDK and UDK --- ui/death_knight/frost/sim.ts | 20 +++++++++++++++++++- ui/death_knight/unholy/sim.ts | 20 +++++++++++++++++++- 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/ui/death_knight/frost/sim.ts b/ui/death_knight/frost/sim.ts index 8d1d8818a3..087b630097 100644 --- a/ui/death_knight/frost/sim.ts +++ b/ui/death_knight/frost/sim.ts @@ -141,7 +141,25 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFrostDeathKnight, { OtherInputs.DarkIntentUptime, ], }, - itemSwapSlots: [ItemSlot.ItemSlotMainHand, ItemSlot.ItemSlotOffHand, ItemSlot.ItemSlotTrinket1, ItemSlot.ItemSlotTrinket2], + itemSwapSlots: [ + ItemSlot.ItemSlotHead, + ItemSlot.ItemSlotNeck, + ItemSlot.ItemSlotShoulder, + ItemSlot.ItemSlotBack, + ItemSlot.ItemSlotChest, + ItemSlot.ItemSlotWrist, + ItemSlot.ItemSlotHands, + ItemSlot.ItemSlotWaist, + ItemSlot.ItemSlotLegs, + ItemSlot.ItemSlotFeet, + ItemSlot.ItemSlotFinger1, + ItemSlot.ItemSlotFinger2, + ItemSlot.ItemSlotTrinket1, + ItemSlot.ItemSlotTrinket2, + ItemSlot.ItemSlotMainHand, + ItemSlot.ItemSlotOffHand, + ItemSlot.ItemSlotRanged, + ], encounterPicker: { showExecuteProportion: false, }, diff --git a/ui/death_knight/unholy/sim.ts b/ui/death_knight/unholy/sim.ts index a3761d5631..c3fd3ea5a7 100644 --- a/ui/death_knight/unholy/sim.ts +++ b/ui/death_knight/unholy/sim.ts @@ -122,7 +122,25 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecUnholyDeathKnight, { OtherInputs.DarkIntentUptime, ], }, - itemSwapSlots: [ItemSlot.ItemSlotMainHand, ItemSlot.ItemSlotOffHand, ItemSlot.ItemSlotTrinket1, ItemSlot.ItemSlotTrinket2], + itemSwapSlots: [ + ItemSlot.ItemSlotHead, + ItemSlot.ItemSlotNeck, + ItemSlot.ItemSlotShoulder, + ItemSlot.ItemSlotBack, + ItemSlot.ItemSlotChest, + ItemSlot.ItemSlotWrist, + ItemSlot.ItemSlotHands, + ItemSlot.ItemSlotWaist, + ItemSlot.ItemSlotLegs, + ItemSlot.ItemSlotFeet, + ItemSlot.ItemSlotFinger1, + ItemSlot.ItemSlotFinger2, + ItemSlot.ItemSlotTrinket1, + ItemSlot.ItemSlotTrinket2, + ItemSlot.ItemSlotMainHand, + ItemSlot.ItemSlotOffHand, + ItemSlot.ItemSlotRanged, + ], encounterPicker: { // Whether to include 'Execute Duration (%)' in the 'Encounter' section of the settings tab. showExecuteProportion: false,