mirror of
https://github.com/danbulant/discord.js
synced 2026-05-26 13:32:04 +00:00
19 lines
521 B
JavaScript
19 lines
521 B
JavaScript
const AbstractHandler = require('./AbstractHandler');
|
|
|
|
class RelationshipRemoveHandler extends AbstractHandler {
|
|
handle(packet) {
|
|
const client = this.packetManager.client;
|
|
const data = packet.d;
|
|
if (data.type === 2) {
|
|
if (client.user.blocked.has(data.id)) {
|
|
client.user.blocked.delete(data.id);
|
|
}
|
|
} else if (data.type === 1) {
|
|
if (client.user.friends.has(data.id)) {
|
|
client.user.friends.delete(data.id);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = RelationshipRemoveHandler;
|