Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
Fixed #37
  • Loading branch information
Coloryr committed Sep 3, 2024
1 parent e15e7d5 commit 455707d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/command/CommandHudSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public List<String> tab(String name, String[] args, int index) {
private static class PicSize extends ACommand {
@Override
public void ex(Object sender, String name, String[] args) {
if (args.length != 3 || !HudUtils.setPicSize(name, args[2])) {
if (args.length != 4 || !HudUtils.setPicSize(name, args[3])) {
AllMusic.side.sendMessage(sender, AllMusic.getMessage().command.error);
return;
}
Expand Down

0 comments on commit 455707d

Please sign in to comment.