From 4db4cde5195ace7aeb12887b7a42f8d8eb437702 Mon Sep 17 00:00:00 2001 From: Citrinate Date: Tue, 27 Feb 2024 18:52:51 -0500 Subject: [PATCH] Added csa alias command --- CS2Interface/Commands.cs | 2 ++ README.md | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/CS2Interface/Commands.cs b/CS2Interface/Commands.cs index a824a3b..c6425e7 100644 --- a/CS2Interface/Commands.cs +++ b/CS2Interface/Commands.cs @@ -27,6 +27,8 @@ internal static class Commands { case "CSTOP" or "CSSTOP" or "CS2STOP": return ResponseStop(bot, access); + case "CSA": + return ResponseStatus(access, steamID, "ASF"); case "CSTATUS" or "CSSTATUS" or "CS2STATUS": return ResponseStatus(bot, access); diff --git a/README.md b/README.md index d976c00..8a2f676 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,12 @@ Command | Access | Description `cstop [Bots]`|`Master`|Stops the CS2 Interface `cstatus [Bots]`|`Master`|Displays the status of the CS2 Interface +#### Command Aliases + +Command | Alias | +--- | --- | +`cstatus asf`|`csa` + --- ### AutoStartCS2Interface