From f0318d6977c7bca49ed8d9a1b3ab89edf4e42b59 Mon Sep 17 00:00:00 2001 From: redleaf1221 Date: Tue, 21 Jan 2025 20:45:43 +0800 Subject: [PATCH] fix: /relic args bug --- Command/Command/Cmd/CommandRelic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/Command/Cmd/CommandRelic.cs b/Command/Command/Cmd/CommandRelic.cs index 8002cc69..36fcb2f3 100644 --- a/Command/Command/Cmd/CommandRelic.cs +++ b/Command/Command/Cmd/CommandRelic.cs @@ -15,7 +15,7 @@ public class CommandRelic : ICommand return; } - if (arg.BasicArgs.Count < 3) + if (arg.BasicArgs.Count < 2) { await arg.SendMsg(I18NManager.Translate("Game.Command.Notice.InvalidArguments")); return;