Skip to content

Commit

Permalink
FIX: revert preffered slot for Unseen Strike (#7085)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paliak authored Dec 18, 2023
1 parent 6210cec commit d7fd0c1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/Data/Skills/other.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3513,7 +3513,6 @@ skills["HiddenBlade"] = {
statDescriptionScope = "skill_stat_descriptions",
castTime = 1,
fromItem = true,
preferredSlotName = "Weapon 1",
baseFlags = {
attack = true,
projectile = true,
Expand Down
1 change: 0 additions & 1 deletion src/Export/Skills/other.txt
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,6 @@ local skills, mod, flag, skill = ...
#skill HiddenBlade
#flags attack projectile forceMainHand
fromItem = true,
preferredSlotName = "Weapon 1",
#mods

#skill VaalBreach
Expand Down
2 changes: 1 addition & 1 deletion src/Modules/CalcSetup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ function calcs.initEnv(build, mode, override, specEnv)
local grantedSkill = copyTable(skill)
grantedSkill.nameSpec = skillData and skillData.name or nil
grantedSkill.sourceItem = item
grantedSkill.slotName = skillData.preferredSlotName or slotName
grantedSkill.slotName = slotName
t_insert(env.grantedSkillsItems, grantedSkill)
end
end
Expand Down

0 comments on commit d7fd0c1

Please sign in to comment.