diff --git a/package.json b/package.json index 2dfe6c0d..51cb4939 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "112.0.0", + "version": "112.0.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { diff --git a/structures/phone/PhoneCall.js b/structures/phone/PhoneCall.js index 3cf0b04b..32d4c76e 100644 --- a/structures/phone/PhoneCall.js +++ b/structures/phone/PhoneCall.js @@ -39,9 +39,10 @@ module.exports = class PhoneCall { await this.origin.send('☎️ Call ended due to inactivity.'); await this.recipient.send('☎️ Call ended due to inactivity.'); } else if (nonQuitter === 'declined') { - const directMsg = validation === 0 ? 'didn\'t answer...' : 'declined the call...'; - await this.origin.send(`☎️ **${this.recipient.guild.name}** ${directMsg}`); - await this.recipient.send('☎️ Declined the call.'); + const originMsg = validation === 0 ? 'didn\'t answer...' : 'declined the call...'; + const recipientMsg = validation === 0 ? 'Sent to voicemail (not really).' : 'Declined the call.'; + await this.origin.send(`☎️ **${this.recipient.guild.name}** ${originMsg}`); + await this.recipient.send(`☎️ ${recipientMsg}`); } else { const quitter = nonQuitter.id === this.origin.id ? this.recipient : this.origin; await nonQuitter.send(`☎️ **${quitter.guild.name}** hung up.`);