Skip to content

Commit

Permalink
feat: Version 1.1.3-BETA (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Tapply authored Jun 10, 2024
1 parent 2a75c9a commit 1b86157
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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>net.jeqo</groupId>
<artifactId>bloons</artifactId>
<version>1.1.2-BETA</version>
<version>1.1.3-BETA</version>
<packaging>jar</packaging>

<name>Bloons</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void onJoin(PlayerJoinEvent event) {
SingleBalloonForceUnequipEvent unequipEvent = new SingleBalloonForceUnequipEvent(player, Bloons.getPlayerBalloons().get(player.getUniqueId()));
unequipEvent.callEvent();

if (!unequipEvent.isCancelled()) return;
if (unequipEvent.isCancelled()) return;

BalloonManagement.removeBalloon(event.getPlayer(), Bloons.getPlayerBalloons().get(event.getPlayer().getUniqueId()));

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# --------------------------------------------------#
#
# Bloons 1.1.2-BETA
# Bloons 1.1.3-BETA
# Made by Jeqo
#
# Wiki: https://jeqo.net/wiki/bloons
Expand Down

0 comments on commit 1b86157

Please sign in to comment.