Skip to content

Commit

Permalink
Fixed armor order in customization
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoni7 committed Sep 16, 2024
1 parent f633aca commit 854181f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/LoadoutReducer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ export const loadoutConfigSlice = createSlice({
updateLoadoutArmor: (state, action: PayloadAction<DestinyArmor[]>) => {
state.loadout.helmet = action.payload[0];
state.loadout.gauntlets = action.payload[1];
state.loadout.legArmor = action.payload[2];
state.loadout.chestArmor = action.payload[3];
state.loadout.chestArmor = action.payload[2];
state.loadout.legArmor = action.payload[3];
state.loadout.classArmor = action.payload[4];
},
updateLoadoutArmorMods: (
Expand Down

0 comments on commit 854181f

Please sign in to comment.