diff --git a/src/commands/billing.ts b/src/commands/billing.ts index 0c5b4ec..de56760 100644 --- a/src/commands/billing.ts +++ b/src/commands/billing.ts @@ -4,7 +4,7 @@ import { Message } from 'eris'; import { randomBytes } from 'crypto'; import { v4 as uuid } from 'uuid'; import { Client, Command } from '../class'; -import Billing_T2 from './billing_t2'; +import Billing_T3 from './billing_t3'; export default class Billing extends Command { constructor(client: Client) { @@ -12,7 +12,7 @@ export default class Billing extends Command { this.name = 'billing'; this.description = 'Pulls up your Billing Portal. You must have a CS Account to continue.'; this.usage = `${this.client.config.prefix}billing`; - this.subcmds = [Billing_T2]; + this.subcmds = [Billing_T3]; this.permissions = 0; this.guildOnly = false; this.enabled = true; diff --git a/src/commands/billing_t2.ts b/src/commands/billing_t3.ts similarity index 92% rename from src/commands/billing_t2.ts rename to src/commands/billing_t3.ts index 392c13e..726be28 100644 --- a/src/commands/billing_t2.ts +++ b/src/commands/billing_t3.ts @@ -2,12 +2,12 @@ import axios from 'axios'; import { Message } from 'eris'; import { Client, Command } from '../class'; -export default class Billing_T2 extends Command { +export default class Billing_T3 extends Command { constructor(client: Client) { super(client); this.name = 't2'; - this.description = 'Subscription to CS Tier 2.'; - this.usage = `${this.client.config.prefix}billing t2`; + this.description = 'Subscription to CS Tier 3.'; + this.usage = `${this.client.config.prefix}billing t3`; this.permissions = 0; this.guildOnly = false; this.enabled = true;