Skip to content

Commit

Permalink
Version bump / Bug Fix (#51)
Browse files Browse the repository at this point in the history
* Fixed bug where /ca set completed false is not setting it to false

Signed-off-by: rowanvr <[email protected]>

* Version bump

Signed-off-by: rowanvr <[email protected]>

Signed-off-by: rowanvr <[email protected]>
  • Loading branch information
rowan-vr authored Aug 22, 2022
1 parent 3dfa816 commit 3379c07
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>me.tippie</groupId>
<artifactId>customadvancements-parent</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ public void execute(final CommandSender sender, final Command command, final Str
progress.setProgress(advancement.getMaxProgress());
} else if (progress.isCompleted() || progress.getProgress() >= advancement.getMaxProgress()) {
progress.setProgress(0);
progress.setCompleted(false);
progress.setAnnounced(false);
}
sender.sendMessage(Lang.COMMAND_SET_PROGRESS_RESPONSE.getConfigValue(new String[]{type, args[2], args[3], value}));
} else if (type.equalsIgnoreCase("progress")) {
Expand Down
2 changes: 1 addition & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>customadvancements-parent</artifactId>
<groupId>me.tippie</groupId>
<version>1.2.3</version>
<version>1.2.4</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.tippie</groupId>
<artifactId>customadvancements-parent</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
<packaging>pom</packaging>

<name>CustomAdvancements</name>
Expand Down
4 changes: 2 additions & 2 deletions spigot_1_17_R1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>me.tippie</groupId>
<artifactId>customadvancements-parent</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
</parent>

<properties>
Expand Down Expand Up @@ -48,7 +48,7 @@
<plugin>
<groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
4 changes: 2 additions & 2 deletions spigot_1_18_R1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>me.tippie</groupId>
<artifactId>customadvancements-parent</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
</parent>

<properties>
Expand Down Expand Up @@ -48,7 +48,7 @@
<plugin>
<groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
4 changes: 2 additions & 2 deletions spigot_1_18_R2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>me.tippie</groupId>
<artifactId>customadvancements-parent</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
</parent>

<properties>
Expand Down Expand Up @@ -48,7 +48,7 @@
<plugin>
<groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
4 changes: 2 additions & 2 deletions spigot_1_19_R1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>me.tippie</groupId>
<artifactId>customadvancements-parent</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
</parent>

<properties>
Expand Down Expand Up @@ -48,7 +48,7 @@
<plugin>
<groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down

0 comments on commit 3379c07

Please sign in to comment.