Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgazul committed Sep 2, 2024
1 parent cae282f commit 2ab4aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/bukkit/craftbukkit/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public static OptionSet main(String[] args) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, ex.getLocalizedMessage());
}

if ((options == null) || (options.has("?") || (options.has("help"))) {
if ((options == null) || (options.has("?") || (options.has("help")))) {
try {
parser.printHelpOn(System.out);
} catch (IOException ex) {
Expand Down

0 comments on commit 2ab4aad

Please sign in to comment.