From 94f9a7a0d2c1203e42d3c06e8fdc2aa52ecd4daf Mon Sep 17 00:00:00 2001 From: WBHarry Date: Sat, 11 Apr 2026 02:18:18 +0200 Subject: [PATCH] . --- module/applications/dialogs/groupRollDialog.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/applications/dialogs/groupRollDialog.mjs b/module/applications/dialogs/groupRollDialog.mjs index dc24654e..47db04c1 100644 --- a/module/applications/dialogs/groupRollDialog.mjs +++ b/module/applications/dialogs/groupRollDialog.mjs @@ -159,7 +159,7 @@ export default class GroupRollDialog extends HandlebarsApplicationMixin(Applicat .map(x => ({ value: x.id, label: x.name })); partContext.selectedMainCharacterDisabled = !selectedMembers.length; - partContext.canStartGroupRoll = selectedMembers.length > 1; + partContext.canStartGroupRoll = selectedMembers.length > 1 && this.mainCharacter?.memberId; partContext.openForAllPlayers = this.openForAllPlayers; break; case 'mainCharacter': @@ -496,7 +496,7 @@ export default class GroupRollDialog extends HandlebarsApplicationMixin(Applicat msgData = { type: 'dualityRoll', user: game.user.id, - title: game.i18n.localize('DAGGERHEART.APPLICATIONS.TagTeamSelect.title'), + title: game.i18n.localize('DAGGERHEART.APPLICATIONS.GroupRollSelect.title'), speaker: cls.getSpeaker({ actor }), system: systemData, rolls: [JSON.stringify(totalRoll)],