Skip to content

Commit

Permalink
[FIX] DeleteProfileCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
gravit0 committed Mar 10, 2024
1 parent 5720521 commit d811a04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void invoke(String... args) throws Exception {
verifyArgs(args, 1);
ClientProfile profile = null;
for(var p : server.getProfiles()) {
if(p.getUUID().toString().equals(args[0]) || p.getTitle().equals(args[1])) {
if(p.getUUID().toString().equals(args[0]) || p.getTitle().equals(args[0])) {
profile = p;
break;
}
Expand Down

0 comments on commit d811a04

Please sign in to comment.