Removed unneccessary default value function for parts

This commit is contained in:
WBHarry 2026-03-24 17:31:46 +01:00
parent 26d1461e46
commit 42e0d117e6
2 changed files with 2 additions and 28 deletions

View file

@ -23,33 +23,6 @@ export default class DamageField extends fields.SchemaField {
super(damageFields, options, context);
}
static getDefaultDamagePart(applyTo) {
return {
applyTo: applyTo,
base: false,
resultBased: false,
type: 'physical',
value: {
dice: 'd6',
multiplier: 'prof',
flatMultiplier: 1,
custom: {
enabled: false,
formula: ''
}
},
valueAlt: {
dice: 'd6',
multiplier: 'prof',
flatMultiplier: 1,
custom: {
enabled: false,
formula: ''
}
}
};
}
/**
* Roll Damage/Healing Action Workflow part.
* Must be called within Action context or similar.