diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index 01f4b54f..235c60b6 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -38,7 +38,7 @@ namespace PluralKit.Bot public async Task Description(Context ctx) { ctx.CheckSystem(); - if (ctx.MatchFlag("c", "clear")) + if (ctx.MatchFlag("c", "clear") || ctx.Match("clear")) { ctx.System.Description = null; await _data.SaveSystem(ctx.System); @@ -73,7 +73,7 @@ namespace PluralKit.Bot { ctx.CheckSystem(); - if (ctx.MatchFlag("c", "clear")) + if (ctx.MatchFlag("c", "clear") || ctx.Match("clear")) { ctx.System.Tag = null; await _data.SaveSystem(ctx.System); @@ -190,7 +190,7 @@ namespace PluralKit.Bot { if (ctx.System == null) throw Errors.NoSystemError; - if (ctx.MatchFlag("c", "clear")) + if (ctx.MatchFlag("c", "clear") || ctx.Match("clear")) { ctx.System.UiTz = "UTC"; await _data.SaveSystem(ctx.System);