pats and hugs

This commit is contained in:
2026-03-29 04:09:43 +01:00
parent 06c088c4f8
commit 5b1394ad6a
3 changed files with 7 additions and 7 deletions

10
.gitignore vendored
View File

@@ -1,7 +1,7 @@
.env .env
.gitignore .gitignore
SkyBot/bin/ **/bin/
SkyBot/obj/ **/obj/
SkyBot/SkyBot.sln **/SkyBot.sln
SkyBot/database.db **/database.db
SkyBot/Config.cs **/Config.cs

View File

@@ -10,7 +10,7 @@ namespace SkyBot.Commands
public class Hug : ICommand public class Hug : ICommand
{ {
public string Name => "hug"; public string Name => "hug";
public string[] Aliases => []; public string[] Aliases => ["hugs"];
public string Description => "Send a hug with a random gif."; public string Description => "Send a hug with a random gif.";
public string Section => "Chill"; public string Section => "Chill";
public string Usage => "hug [@user]"; public string Usage => "hug [@user]";

View File

@@ -10,7 +10,7 @@ namespace SkyBot.Commands
public class Pat : ICommand public class Pat : ICommand
{ {
public string Name => "pat"; public string Name => "pat";
public string[] Aliases => []; public string[] Aliases => ["pats"];
public string Description => "Give someone headpats with a random gif."; public string Description => "Give someone headpats with a random gif.";
public string Section => "Chill"; public string Section => "Chill";
public string Usage => "pat [@user]"; public string Usage => "pat [@user]";