diff --git a/.gitignore b/.gitignore index 3d00fe1..c8bbd73 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ .env .gitignore -SkyBot/bin/ -SkyBot/obj/ -SkyBot/SkyBot.sln -SkyBot/database.db -SkyBot/Config.cs +**/bin/ +**/obj/ +**/SkyBot.sln +**/database.db +**/Config.cs diff --git a/SkyBot/Commands/Chill/Hug.cs b/SkyBot/Commands/Chill/Hug.cs index 966d9bd..0d585f7 100644 --- a/SkyBot/Commands/Chill/Hug.cs +++ b/SkyBot/Commands/Chill/Hug.cs @@ -10,7 +10,7 @@ namespace SkyBot.Commands public class Hug : ICommand { public string Name => "hug"; - public string[] Aliases => []; + public string[] Aliases => ["hugs"]; public string Description => "Send a hug with a random gif."; public string Section => "Chill"; public string Usage => "hug [@user]"; diff --git a/SkyBot/Commands/Chill/Pat.cs b/SkyBot/Commands/Chill/Pat.cs index 3739c85..95ced12 100644 --- a/SkyBot/Commands/Chill/Pat.cs +++ b/SkyBot/Commands/Chill/Pat.cs @@ -10,7 +10,7 @@ namespace SkyBot.Commands public class Pat : ICommand { public string Name => "pat"; - public string[] Aliases => []; + public string[] Aliases => ["pats"]; public string Description => "Give someone headpats with a random gif."; public string Section => "Chill"; public string Usage => "pat [@user]";