@@ -108,7 +108,7 @@ class Message extends Base {
108108 if ( data . attachments ) {
109109 for ( const attachment of data . attachments ) {
110110 this . attachments . set ( attachment . id , new MessageAttachment (
111- attachment . url , attachment . filename , attachment
111+ attachment . url , attachment . filename , attachment ,
112112 ) ) ;
113113 }
114114 }
@@ -230,7 +230,7 @@ class Message extends Base {
230230 this . attachments = new Collection ( ) ;
231231 for ( const attachment of data . attachments ) {
232232 this . attachments . set ( attachment . id , new MessageAttachment (
233- attachment . url , attachment . filename , attachment
233+ attachment . url , attachment . filename , attachment ,
234234 ) ) ;
235235 }
236236 } else {
@@ -242,7 +242,7 @@ class Message extends Base {
242242 'mentions' in data ? data . mentions : this . mentions . users ,
243243 'mentions_roles' in data ? data . mentions_roles : this . mentions . roles ,
244244 'mention_everyone' in data ? data . mention_everyone : this . mentions . everyone ,
245- 'mention_channels' in data ? data . mention_channels : this . mentions . crosspostedChannels
245+ 'mention_channels' in data ? data . mention_channels : this . mentions . crosspostedChannels ,
246246 ) ;
247247
248248 this . flags = new MessageFlags ( 'flags' in data ? data . flags : 0 ) . freeze ( ) ;
@@ -511,7 +511,7 @@ class Message extends Base {
511511 reply ( content , options ) {
512512 return this . channel . send ( content instanceof APIMessage ?
513513 content :
514- APIMessage . transformOptions ( content , options , { reply : this . member || this . author } )
514+ APIMessage . transformOptions ( content , options , { reply : this . member || this . author } ) ,
515515 ) ;
516516 }
517517
0 commit comments