Make phone show IDs at the start

This commit is contained in:
Dragon Fire
2020-07-01 14:31:19 -04:00
parent 95373296e6
commit b101f5bb06
3 changed files with 3 additions and 4 deletions
-1
View File
@@ -13,4 +13,3 @@ config.json
command-leaderboard.json
# In-Development Commands
commands/games-sp/puyo-puyo.js
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "119.0.0",
"version": "119.0.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {
+2 -2
View File
@@ -20,8 +20,8 @@ module.exports = class PhoneCall {
await this.origin.send(`☎️ Admin call started with **${this.recipient.guild.name}**.`);
await this.recipient.send(`☎️ An **ADMIN** call from **${this.origin.guild.name}** has begun.`);
} else {
await this.origin.send(`☎️ Calling **${this.recipient.guild.name}**...`);
await this.recipient.send(`☎️ Incoming call from **${this.origin.guild.name}**. Pick up?`);
await this.origin.send(`☎️ Calling **${this.recipient.guild.name} (${this.recipient.id})**...`);
await this.recipient.send(`☎️ Incoming call from **${this.origin.guild.name} (${this.origin.id})**. Pick up?`);
const validation = await verify(this.recipient, null);
if (!validation) {
await this.hangup('declined', validation);