From 6ab05a95fbab68af6ee40723f3a9ea96c2210799 Mon Sep 17 00:00:00 2001 From: Adrian Klingen Date: Fri, 17 Jan 2025 11:32:38 +0100 Subject: [PATCH] Add full item swap to Sub sim --- ui/rogue/subtlety/sim.ts | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/ui/rogue/subtlety/sim.ts b/ui/rogue/subtlety/sim.ts index 3866e0ed2e..f1923c76a8 100644 --- a/ui/rogue/subtlety/sim.ts +++ b/ui/rogue/subtlety/sim.ts @@ -136,7 +136,25 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecSubtletyRogue, { OtherInputs.InputDelay, ], }, - itemSwapSlots: [ItemSlot.ItemSlotMainHand, ItemSlot.ItemSlotOffHand], + 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,