From 85706a395eb6efd064c2251c56baf2cf03ecbae3 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 17 Feb 2018 22:28:30 +0000 Subject: [PATCH] I can grammar me swear --- commands/portal/add-portal-channel.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/portal/add-portal-channel.js b/commands/portal/add-portal-channel.js index 6712744f..9790f093 100644 --- a/commands/portal/add-portal-channel.js +++ b/commands/portal/add-portal-channel.js @@ -24,7 +24,7 @@ module.exports = class AddPortalChannelCommand extends Command { run(msg, { channel }) { if (channel.type !== 'text') return msg.reply('Only text channels can have a portal!'); const channels = this.client.provider.get('global', 'portals', []); - if (channels.includes(channel.id)) return msg.reply(`${channel} is already has an open portal!`); + if (channels.includes(channel.id)) return msg.reply(`${channel} already has an open portal!`); channels.push(channel.id); this.client.provider.set('global', 'portals', channels); return msg.say(`A portal opened in ${channel}!`); diff --git a/package.json b/package.json index 4b29e85a..ef12d262 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "65.0.0", + "version": "65.0.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {