Skip to content

Commit

Permalink
feat: 更新litecommands至3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
huanmeng-qwq committed Nov 11, 2024
1 parent f928046 commit 0e182b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ com-github-snwcreations-jkook = "0.54.0"
com-github-snwcreations-terminalconsoleappender = "1.3.5"
com-google-code-gson-gson = "2.10.1"
com-squareup-okhttp3-okhttp = "4.10.0"
dev-rollczi-litecommands-framework = "3.9.0"
dev-rollczi-litecommands-framework = "3.9.1"
net-bytebuddy-byte-buddy = "1.12.10"
net-bytebuddy-byte-buddy-agent = "1.12.10"
net-fabricmc-sponge-mixin = "0.15.2+mixin.0.8.7"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public HelpCommand(KBCClient client) {

@Description("获取此帮助列表。")
@Execute
public Object help(@Context Message message, @Context CommandSender sender, @Arg String[] args) {
public Object help(@Context Message message, @Context CommandSender sender, @Arg("args") String[] args) {
if (sender instanceof ConsoleCommandSender) {
List<String> content = buildHelpContent(args.length > 0 ? args[0] : null);
if (content.isEmpty()) {
Expand Down

0 comments on commit 0e182b9

Please sign in to comment.