Skip to content

Commit

Permalink
v4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MetallicGoat committed Jun 26, 2024
1 parent 860f58e commit 9f6873f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 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>4.1.2</version>
<version>4.1.3</version>

<repositories>
<repository>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public void registerEvents() {
// Cosmetic
manager.registerEvents(new FriendlyVillagers(), plugin);
manager.registerEvents(new HealPoolParticles(), plugin);
manager.registerEvents(new InvisFootstepsParticles(), plugin);
manager.registerEvents(new PlaceholderUpdating(), plugin);
manager.registerEvents(new SpongeParticles(), plugin);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,14 @@ public class MainConfig {
// ===== PARTICLE EFFECTS
@SectionTitle(title = "PARTICLE EFFECTS")

@Config(
description = {
"If a player has invis and is moving, footsteps particles will be played at their feet",
"Note: this is only supported on 1.8 -> 1.12, as the particle was removed in modern versions"
}
)
public static boolean play_footsteps_with_invis = true;

@Config(
description = {
"Cool particle effect when you place a sponge"
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: 4.1.2
version: 4.1.3
author: MetallicGoat
main: me.metallicgoat.tweaksaddon.MBedwarsTweaksPlugin
description: Adds some extra customizability to MBedwars
Expand Down

0 comments on commit 9f6873f

Please sign in to comment.