Skip to content

Commit

Permalink
fix sniper extra sneak attack dice
Browse files Browse the repository at this point in the history
  • Loading branch information
queryluke committed Jun 9, 2022
1 parent df49f8c commit bcc7bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/cs/MeCsGlobalNotes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default {
const levels = infil.levels
const numDice = Math.floor(levels / 2) || 1
const shadow = infil.subclass === 'shadow' ? ' (d8 w/ melee)' : ''
const sniper = infil.subclass === 'sniper' ? ` (${numDice + 3}d6 w/ sniper rifles)` : ''
const sniper = infil.subclass === 'sniper' && levels >= 17 ? ` (${numDice + 3}d6 w/ sniper rifles)` : ''
return `Sneak Attack: ${numDice}d6${shadow}${sniper}`
} else {
return note.value
Expand Down

0 comments on commit bcc7bd4

Please sign in to comment.