Skip to content

Commit

Permalink
Add Item Swap slots to Arms Sim
Browse files Browse the repository at this point in the history
  • Loading branch information
1337LutZ committed Jan 14, 2025
1 parent e6a880e commit 532083f
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion ui/warrior/arms/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { IndividualSimUI, registerSpecConfig } from '../../core/individual_sim_u
import { Player } from '../../core/player';
import { PlayerClasses } from '../../core/player_classes';
import { APLRotation } from '../../core/proto/apl';
import { Debuffs, Faction, IndividualBuffs, PartyBuffs, PseudoStat, Race, RaidBuffs, Spec, Stat } from '../../core/proto/common';
import { Debuffs, Faction, IndividualBuffs, ItemSlot, PartyBuffs, PseudoStat, Race, RaidBuffs, Spec, Stat } from '../../core/proto/common';
import { Stats, UnitStat } from '../../core/proto_utils/stats';
import * as WarriorInputs from '../inputs';
import * as Presets from './presets';
Expand Down Expand Up @@ -106,6 +106,25 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecArmsWarrior, {
otherInputs: {
inputs: [WarriorInputs.StartingRage(), WarriorInputs.StanceSnapshot(), OtherInputs.InputDelay, OtherInputs.TankAssignment, OtherInputs.InFrontOfTarget],
},
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: true,
Expand Down

0 comments on commit 532083f

Please sign in to comment.