Fix in creature+actor sheet
This commit is contained in:
@@ -84,8 +84,8 @@ export default class AwERoll extends Roll {
|
||||
Object.entries(CONFIG.Dice.rollModes).map(([k, v]) => [k, game.i18n.localize(v.label ?? v)])
|
||||
)
|
||||
|
||||
// Bonus choices: -5 to +5
|
||||
const bonusChoices = Array.from({length: 11}, (_, i) => i - 5)
|
||||
// Bonus choices: -10 to +10
|
||||
const bonusChoices = Array.from({length: 21}, (_, i) => i - 10)
|
||||
.map(v => ({ value: v, label: v > 0 ? `+${v}` : String(v), selected: v === 0 }))
|
||||
|
||||
// DC choices: blank + 10..30
|
||||
|
||||
Reference in New Issue
Block a user