v10.7.0 - l'os de Sémolosse #635

Merged
uberwald merged 16 commits from VincentVk/foundryvtt-reve-de-dragon:v10 into v10 2023-03-16 23:09:11 +01:00
Showing only changes of commit 45bfc69b39 - Show all commits

View File

@ -39,18 +39,18 @@ export class Targets {
} }
} }
static getTarget() { static getTarget(options = { warn: true }) {
const targets = Targets.listTargets(); const targets = Targets.listTargets();
switch (targets.length) { switch (targets.length) {
case 1: case 1:
return targets[0]; return targets[0];
case 0: case 0:
ui.notifications.warn("Vous devez choisir une cible à attaquer!"); if (options.warn) ui.notifications.warn("Vous devez choisir une cible à attaquer!");
break; break;
default: default:
ui.notifications.warn("Vous devez choisir une cible (et <strong>une seule</strong>) à attaquer!"); if (options.warn) ui.notifications.warn("Vous devez choisir une cible (et <strong>une seule</strong>) à attaquer!");
return;
} }
return undefined;
} }
} }