diff --git a/structures/phone/PhoneCall.js b/structures/phone/PhoneCall.js index d1594520..aefb3395 100644 --- a/structures/phone/PhoneCall.js +++ b/structures/phone/PhoneCall.js @@ -59,7 +59,7 @@ module.exports = class PhoneCall { send(channel, msg, hasText, hasImage, hasEmbed) { if (msg.content && msg.content.toLowerCase() === 'hang up') { - if (this.ownerOrigin && channel.id !== this.origin.id) { + if (this.ownerOrigin && channel.id === this.origin.id) { return this.recipient.send('☎️ You cannot hang up in an admin call.'); } return this.hangup(channel);