Skip to content

Commit

Permalink
Fixed usage message after command
Browse files Browse the repository at this point in the history
  • Loading branch information
LUPLUV committed Oct 3, 2022
1 parent aeb1286 commit 962af11
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'dev.lupluv'
version 'v2.0.1'
version 'v2.0.3'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion build/resources/main/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: SimpleGamemode
version: v2.0.1
version: 2.0.3
api-version: 1.19
author: LUPLUV
description: 'Lets you enter different Gamemodes easier.'
Expand Down
Binary file modified build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command
}
}

return false;
return true;
}
}
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: SimpleGamemode
version: v2.0.1
version: 2.0.3
api-version: 1.19
author: LUPLUV
description: 'Lets you enter different Gamemodes easier.'
Expand Down

0 comments on commit 962af11

Please sign in to comment.