Skip to content

Commit

Permalink
feat(MessageEmbed): add setFields method (#6186)
Browse files Browse the repository at this point in the history
Co-authored-by: SpaceEEC <spaceeec@yahoo.com>
  • Loading branch information
ImRodry and SpaceEEC committed Jul 31, 2021
1 parent 331a9d3 commit a25e165
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/structures/MessageEmbed.js
Expand Up @@ -298,6 +298,16 @@ class MessageEmbed {
return this;
}

/**
* Sets the embed's fields (max 25).
* @param {...EmbedFieldData|EmbedFieldData[]} fields The fields to set
* @returns {MessageEmbed}
*/
setFields(...fields) {
this.spliceFields(0, this.fields.length, fields);
return this;
}

/**
* Sets the author of this embed.
* @param {string} name The name of the author
Expand Down
1 change: 1 addition & 0 deletions typings/index.d.ts
Expand Up @@ -1151,6 +1151,7 @@ export class MessageEmbed {
public readonly video: MessageEmbedVideo | null;
public addField(name: string, value: string, inline?: boolean): this;
public addFields(...fields: EmbedFieldData[] | EmbedFieldData[][]): this;
public setFields(...fields: EmbedFieldData[] | EmbedFieldData[][]): this;
public setAuthor(name: string, iconURL?: string, url?: string): this;
public setColor(color: ColorResolvable): this;
public setDescription(description: string): this;
Expand Down

0 comments on commit a25e165

Please sign in to comment.