edit embed fields for cwg
parent
86fb5a7dee
commit
4211689f73
|
@ -84,8 +84,7 @@ export default class CWG_Create extends Command {
|
|||
.setTitle('Domain Creation')
|
||||
.setColor(3066993)
|
||||
.addField('Account Username', `${account.username} | <@${account.userID}>`, true)
|
||||
.addField('Account ID', account.id, true)
|
||||
.addField('Technician', message.author.toString(), true)
|
||||
.addField('Technician', await this.client.util.getTechnicianFullName(message.author), true)
|
||||
.addField('Domain', domain.domain, true)
|
||||
.addField('Port', String(domain.port), true);
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ export default class CWG_Delete extends Command {
|
|||
const embed = new MessageEmbed();
|
||||
embed.setTitle('Domain Deletion');
|
||||
embed.addField('Account Username', `${domain.account.username} | <@${domain.account.userID}>`, true);
|
||||
embed.addField('Account ID', domain.account.userID, true);
|
||||
embed.addField('Technician', await this.client.util.getTechnicianFullName(message.author), true);
|
||||
embed.addField('Domain', domain.domain, true);
|
||||
embed.addField('Port', String(domain.port), true);
|
||||
embed.setFooter(this.client.user.username, this.client.user.avatarURL());
|
||||
|
|
Loading…
Reference in New Issue