pull/29/head
Matthew 2020-11-08 05:03:00 -05:00
parent cad3e234b9
commit 2d42375484
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
2 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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;