@@ -2068,7 +2068,7 @@ class Client extends EventEmitter {
20682068 */
20692069 getRESTGuildMembers ( guildID , options = { } ) {
20702070 process . emitWarning ( "getRESTGuildMembers() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2071- return this . rest . getRESTGuildMembers ( guildID , options ) ;
2071+ return this . rest . getGuildMembers ( guildID , options ) ;
20722072 }
20732073
20742074 /**
@@ -2079,7 +2079,7 @@ class Client extends EventEmitter {
20792079 */
20802080 getRESTGuildRoles ( guildID ) {
20812081 process . emitWarning ( "getRESTGuildRoles() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2082- return this . rest . getRESTGuildRoles ( guildID ) ;
2082+ return this . rest . getGuildRoles ( guildID ) ;
20832083 }
20842084
20852085 /**
@@ -2093,7 +2093,7 @@ class Client extends EventEmitter {
20932093 */
20942094 getRESTGuilds ( options = { } ) {
20952095 process . emitWarning ( "getRESTGuilds() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2096- return this . rest . getRESTGuilds ( options ) ;
2096+ return this . rest . getGuilds ( options ) ;
20972097 }
20982098
20992099 /**
@@ -2107,7 +2107,7 @@ class Client extends EventEmitter {
21072107 */
21082108 getRESTGuildScheduledEvent ( guildID , eventID , options = { } ) {
21092109 process . emitWarning ( "getRESTGuildScheduledEvent() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2110- return this . rest . getRESTGuildScheduledEvent ( guildID , eventID , options ) ;
2110+ return this . rest . getGuildScheduledEvent ( guildID , eventID , options ) ;
21112111 }
21122112
21132113 /**
@@ -2119,7 +2119,7 @@ class Client extends EventEmitter {
21192119 */
21202120 getRESTGuildSticker ( guildID , stickerID ) {
21212121 process . emitWarning ( "getRESTGuildSticker() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2122- return this . rest . getRESTGuildSticker ( guildID , stickerID ) ;
2122+ return this . rest . getGuildSticker ( guildID , stickerID ) ;
21232123 }
21242124
21252125 /**
@@ -2130,7 +2130,7 @@ class Client extends EventEmitter {
21302130 */
21312131 getRESTGuildStickers ( guildID ) {
21322132 process . emitWarning ( "getRESTGuildStickers() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2133- return this . rest . getRESTGuildStickers ( guildID ) ;
2133+ return this . rest . getGuildStickers ( guildID ) ;
21342134 }
21352135
21362136 /**
@@ -2141,7 +2141,7 @@ class Client extends EventEmitter {
21412141 */
21422142 getRESTSticker ( stickerID ) {
21432143 process . emitWarning ( "getRESTSticker() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2144- return this . rest . getRESTSticker ( stickerID ) ;
2144+ return this . rest . getSticker ( stickerID ) ;
21452145 }
21462146
21472147 /**
@@ -2152,7 +2152,7 @@ class Client extends EventEmitter {
21522152 */
21532153 getRESTUser ( userID ) {
21542154 process . emitWarning ( "getRESTUser() is deprecated and will be removed in the future." , "DeprecationWarning" ) ;
2155- return this . rest . getRESTUser ( userID ) ;
2155+ return this . rest . getUser ( userID ) ;
21562156 }
21572157
21582158 /**
0 commit comments