File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -208,13 +208,14 @@ class SetupProcess
208
208
209
209
if @offhand_trainables && game_state.focus_threshold_active
210
210
211
- # define what mainhand skills look like
211
+ # define what mainhand and offhand skills look like
212
212
mainhand_skills = $melee_skills + $thrown_skills + $martial_skills - game_state.aiming_trainables
213
+ offhand_skills = game_state.aiming_trainables + ['Offhand Weapon']
213
214
214
215
# create selection pools of bow/mainhand/offhand groupings
215
216
bow_selection_pool = new_weapon_skills.select { |skill| $aim_skills.include?(skill) && DRSkill.getxp(skill) < 30 }
216
217
mainhand_selection_pool = new_weapon_skills.select { |skill| mainhand_skills.include?(skill) && DRSkill.getxp(skill) < 30 }
217
- offhand_selection_pool = new_weapon_skills.select { |skill| game_state.aiming_trainables .include?(skill) && DRSkill.getxp(skill) < 30 }
218
+ offhand_selection_pool = new_weapon_skills.select { |skill| offhand_skills .include?(skill) && DRSkill.getxp(skill) < 30 }
218
219
219
220
echo("bow_selection_pool #{bow_selection_pool}") if $debug_mode_ct
220
221
echo("mainhand_selection_pool #{mainhand_selection_pool}") if $debug_mode_ct
You can’t perform that action at this time.
0 commit comments