12.0.2 - Les pluies d'Astrobazzarh #703

Merged
uberwald merged 2 commits from VincentVk/foundryvtt-reve-de-dragon:v11 into v11 2024-06-14 08:04:24 +02:00
Showing only changes of commit 638459049d - Show all commits

View File

@ -36,8 +36,8 @@ export class DeTMR extends Die {
super(termData); super(termData);
} }
async evaluate() { async evaluate(options) {
super.evaluate(); await super.evaluate(options);
this.explode("x=8"); this.explode("x=8");
return this; return this;
} }
@ -73,8 +73,8 @@ export class DeDraconique extends Die {
super(termData); super(termData);
} }
async evaluate() { async evaluate(options) {
super.evaluate(); await super.evaluate(options);
this.explode("x=7"); this.explode("x=7");
return this; return this;
} }