diff --git a/src/Modules/MatchTrackerModule/Controllers/MatchTrackerCommandsController.cs b/src/Modules/MatchTrackerModule/Controllers/MatchTrackerCommandsController.cs index 628eb1f9a..650d9f2e2 100644 --- a/src/Modules/MatchTrackerModule/Controllers/MatchTrackerCommandsController.cs +++ b/src/Modules/MatchTrackerModule/Controllers/MatchTrackerCommandsController.cs @@ -9,6 +9,7 @@ namespace EvoSC.Modules.Official.MatchTrackerModule.Controllers; [Controller] public class MatchTrackerCommandsController(IMatchTrackerExportService exportService) : EvoScController { - [ChatCommand("mtexport", "Export all match tracker data to a csv file.")] + [ChatCommand("matchtrackerexport", "Export all match tracker data to a csv file.")] + [CommandAlias("/mtexport", true)] public Task ExportCsvAsync(string file) => exportService.ExportCsv(file); }