Skip to content

Commit

Permalink
Ignore unknown CLI args
Browse files Browse the repository at this point in the history
Increase client compatibility for kotlin-ice-adapter
  • Loading branch information
Brutus5000 committed May 17, 2024
1 parent df5c3fc commit d38b78c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ public class IceAdapter implements Callable<Integer> {
public static volatile GameSession gameSession;

public static void main(String[] args) {
new CommandLine(new IceAdapter()).execute(args);
new CommandLine(new IceAdapter())
.setUnmatchedArgumentsAllowed(true)
.execute(args);
}

@Override
Expand Down

0 comments on commit d38b78c

Please sign in to comment.