diff --git a/source/Discord/Commands/Groups.ts b/source/Discord/Commands/Groups.ts index 97d165f..e761ccc 100644 --- a/source/Discord/Commands/Groups.ts +++ b/source/Discord/Commands/Groups.ts @@ -143,12 +143,13 @@ export class GroupCommand implements Command, ChatInteractionCommand, Autocomple const nextPlaydate = playdateRepo.getNextPlaydateForGroup(group); const values = [ - `${iconCache.getEmoji("people_group_solid")} ${roleMention(group.role.roleid)}` + `Role: ${iconCache.getEmoji("people_group_solid")} ${roleMention(group.role.roleid)}`, + `Leader/GM: ${userMention(group.leader.memberid)}` ]; if (nextPlaydate) { values.push( - `${iconCache.getEmoji("calendar_days_solid")} ${time(nextPlaydate.from_time, "F")}` + `Next Playdate: ${iconCache.getEmoji("calendar_days_solid")} ${time(nextPlaydate.from_time, "F")}` ) }