Fix/857 generic roll buttons (#866)

* Action Macro working again

* Remove buttons from generic roll for non-gm
This commit is contained in:
Dapoulp 2025-08-12 16:47:59 +02:00 committed by GitHub
parent e90355b08b
commit f62e51c4f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 27 additions and 69 deletions

View file

@ -84,7 +84,7 @@ export class ActionField extends foundry.data.fields.ObjectField {
getModel(value) {
return (
game.system.api.models.actions.actionsTypes[value.type] ??
game.system.api.models.actions.actionsTypes.attack
null
);
}
@ -93,7 +93,6 @@ export class ActionField extends foundry.data.fields.ObjectField {
/** @override */
_cleanType(value, options) {
if (!(typeof value === 'object')) value = {};
const cls = this.getModel(value);
if (cls) return cls.cleanData(value, options);
return value;