Skip to content

Commit

Permalink
Bump to 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MetallicGoat committed Jan 6, 2024
1 parent 55e8315 commit b136844
Show file tree
Hide file tree
Showing 3 changed files with 6 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>me.metallicgoat</groupId>
<artifactId>MBedwarsTweaks</artifactId>
<version>3.3.2-Beta1</version>
<version>3.3.2</version>

<repositories>
<repository>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ public void onDamage(EntityDamageEvent event) {
if (!this.explodedPlayers.containsKey(player))
return;

final boolean isFireball = this.explodedPlayers.get(player).isFireball;
final ExplodeInfo info = this.explodedPlayers.remove(player);
final boolean isFireball = info.isFireball;

info.removeTask.cancel();

if (isFireball)
event.setDamage(event.getDamage() * MainConfig.fireball_fall_damage_multiplier);
Expand Down
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: MBedwarsTweaks
version: 3.3.2-Beta1
version: 3.3.2
author: MetallicGoat
main: me.metallicgoat.tweaksaddon.MBedwarsTweaksPlugin
description: Adds some extra customizability to MBedwars
Expand Down

0 comments on commit b136844

Please sign in to comment.