Update Presence.js
This commit is contained in:
parent
987aa3a1fb
commit
78e2fb2945
@ -90,15 +90,19 @@ class Presence extends Base {
|
|||||||
if ('activities' in data) {
|
if ('activities' in data) {
|
||||||
/**
|
/**
|
||||||
* The activities of this presence (Always `Activity[]` if not ClientUser)
|
* The activities of this presence (Always `Activity[]` if not ClientUser)
|
||||||
* @type {CustomStatus[]|RichPresence[]|SpotifyRPC[]}
|
* @type {CustomStatus[]|RichPresence[]|SpotifyRPC[]|Activity[]}
|
||||||
*/
|
*/
|
||||||
this.activities = data.activities.map(activity => {
|
this.activities = data.activities.map(activity => {
|
||||||
if ([ActivityTypes.CUSTOM, 'CUSTOM'].includes(activity.type)) {
|
if (this.userId == this.client.user.id) {
|
||||||
return new CustomStatus(this.client, activity);
|
if ([ActivityTypes.CUSTOM, 'CUSTOM'].includes(activity.type)) {
|
||||||
} else if (activity.id == 'spotify:1') {
|
return new CustomStatus(this.client, activity);
|
||||||
return new SpotifyRPC(this.client, activity);
|
} else if (activity.id == 'spotify:1') {
|
||||||
|
return new SpotifyRPC(this.client, activity);
|
||||||
|
} else {
|
||||||
|
return new RichPresence(this.client, activity);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return new RichPresence(this.client, activity);
|
return new Activity(this, activity);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@ -621,7 +625,7 @@ class CustomStatus extends Activity {
|
|||||||
* @param {CustomStatus|CustomStatusOptions} [data={}] CustomStatus to clone or raw data
|
* @param {CustomStatus|CustomStatusOptions} [data={}] CustomStatus to clone or raw data
|
||||||
*/
|
*/
|
||||||
constructor(client, data = {}) {
|
constructor(client, data = {}) {
|
||||||
super(client.presence, {
|
super('presence' in client ? client.presence : client, {
|
||||||
name: 'Custom Status',
|
name: 'Custom Status',
|
||||||
type: ActivityTypes.CUSTOM,
|
type: ActivityTypes.CUSTOM,
|
||||||
...data,
|
...data,
|
||||||
@ -670,7 +674,7 @@ class RichPresence extends Activity {
|
|||||||
* @param {RichPresence} [data={}] RichPresence to clone or raw data
|
* @param {RichPresence} [data={}] RichPresence to clone or raw data
|
||||||
*/
|
*/
|
||||||
constructor(client, data = {}) {
|
constructor(client, data = {}) {
|
||||||
super(client.presence, { type: 0, ...data });
|
super('presence' in client ? client.presence : client, { type: 0, ...data });
|
||||||
this.setup(data);
|
this.setup(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user