i hate everything i've done

This commit is contained in:
Hexugory 2023-04-01 01:48:52 -05:00
parent c9255f28c1
commit 644b180d1e

View File

@ -7,6 +7,7 @@ import { SlashCommand } from "./slash";
import { GrantCommand } from "./grant";
import { EquipCommand } from "./equip";
import { ListCommand } from "./list";
import { TradeCommand } from "./trade";
export const SlashCommandList: SlashCommand[] = [
new RandomCaseCommand(),
@ -16,5 +17,6 @@ export const SlashCommandList: SlashCommand[] = [
new ChallengeCommand(),
new GrantCommand(),
new EquipCommand(),
new ListCommand()
new ListCommand(),
new TradeCommand()
];