Skip to content

Commit

Permalink
v2.0.0.3
Browse files Browse the repository at this point in the history
-More KamiSubCommands constructors

Took 19 minutes
  • Loading branch information
Jake-Moore committed Nov 19, 2023
1 parent cd301cb commit a86bfca
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.kamikazejam</groupId>
<artifactId>kamicommon</artifactId>
<version>2.0.0.2</version>
<version>2.0.0.3</version>
<packaging>jar</packaging>

<name>KamiCommon</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ public abstract class KamiSubCommands {
private final boolean versionCmd, updateCmd;
private final List<KamiSubCommand> subCommands = new ArrayList<>();

public KamiSubCommands(JavaPlugin plugin) {
this.plugin = plugin;
this.versionCmd = false;
this.updateCmd = false;
}

public KamiSubCommands(JavaPlugin plugin, boolean versionCmd) {
this.plugin = plugin;
this.versionCmd = versionCmd;
this.updateCmd = false;
}

public KamiSubCommands(JavaPlugin plugin, boolean versionCmd, boolean updateCmd) {
this.plugin = plugin;
this.versionCmd = versionCmd;
Expand Down

0 comments on commit a86bfca

Please sign in to comment.