@@ -32,7 +32,6 @@ const Status = require('../util/Status');
32
32
const Sweepers = require ( '../util/Sweepers' ) ;
33
33
34
34
let deprecationEmittedForPremiumStickerPacks = false ;
35
- let deprecationEmittedForClientPresence = false ;
36
35
37
36
/**
38
37
* The main hub for interacting with the Discord API, and the starting point for any bot.
@@ -140,7 +139,7 @@ class Client extends BaseClient {
140
139
* @private
141
140
* @type {ClientPresence }
142
141
*/
143
- this . presence = new ClientPresence ( this , this . options . ws . presence ?? this . options . presence ) ;
142
+ this . presence = new ClientPresence ( this , this . options . presence ) ;
144
143
145
144
Object . defineProperty ( this , 'token' , { writable : true } ) ;
146
145
if ( ! this . token && 'DISCORD_TOKEN' in process . env ) {
@@ -220,15 +219,6 @@ class Client extends BaseClient {
220
219
this . emit ( Events . Debug , `Provided token: ${ this . _censoredToken } ` ) ;
221
220
222
221
if ( this . options . presence ) {
223
- if ( ! deprecationEmittedForClientPresence ) {
224
- process . emitWarning (
225
- 'ClientOptions#presence is deprecated and will be removed. Use ClientOptions#ws#presence instead.' ,
226
- 'DeprecationWarning' ,
227
- ) ;
228
-
229
- deprecationEmittedForClientPresence = true ;
230
- }
231
-
232
222
this . options . ws . presence = this . presence . _parse ( this . options . presence ) ;
233
223
}
234
224
@@ -557,9 +547,6 @@ class Client extends BaseClient {
557
547
if ( typeof options . ws !== 'object' || options . ws === null ) {
558
548
throw new DiscordjsTypeError ( ErrorCodes . ClientInvalidOption , 'ws' , 'an object' ) ;
559
549
}
560
- if ( typeof options . ws . presence !== 'object' || options . ws . presence === null ) {
561
- throw new DiscordjsTypeError ( ErrorCodes . ClientInvalidOption , 'ws.presence' , 'an object' ) ;
562
- }
563
550
if ( typeof options . rest !== 'object' || options . rest === null ) {
564
551
throw new DiscordjsTypeError ( ErrorCodes . ClientInvalidOption , 'rest' , 'an object' ) ;
565
552
}
0 commit comments