From 9a2bfabee62ed66991debfca364dc24aa1c2802c Mon Sep 17 00:00:00 2001 From: Holly Date: Sun, 10 Sep 2023 18:51:29 +0100 Subject: [PATCH] Rename RollCommand -> Roll to make it consistent --- server/Bot.ts | 2 +- server/commands/{RollCommand.ts => Roll.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename server/commands/{RollCommand.ts => Roll.ts} (100%) diff --git a/server/Bot.ts b/server/Bot.ts index 24b71ce..e891562 100644 --- a/server/Bot.ts +++ b/server/Bot.ts @@ -8,7 +8,7 @@ import RankingCommand from "./commands/Ranking"; import LockCommand from "./commands/Lock"; import MultiplayerCommands from "./commands/Multiplayer"; import HelpCommand from "./commands/Help"; -import RollCommand from "./commands/RollCommand"; +import RollCommand from "./commands/Roll"; export default class Bot { public user:User; diff --git a/server/commands/RollCommand.ts b/server/commands/Roll.ts similarity index 100% rename from server/commands/RollCommand.ts rename to server/commands/Roll.ts