Skip to content

Commit

Permalink
Fix bleed effect particles
Browse files Browse the repository at this point in the history
  • Loading branch information
Travja committed Jun 16, 2024
1 parent c998e51 commit 060da30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<description>Custom items, combat, and more!</description>

<properties>
<codex.version>1.0.0-R0.16-SNAPSHOT</codex.version>
<codex.version>1.0.0-R0.18-SNAPSHOT</codex.version>
<fabled.version>1.0.0-R0.21-SNAPSHOT</fabled.version>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Builder(double lifeTime, double interval, @NotNull Function<LivingEntity,
Particle particle;
try {
particle = Particle.BLOCK;
} catch (Exception e) {
} catch (NoSuchFieldError e) {
particle = Particle.valueOf("BLOCK_CRACK");
}
this.withBlood(particle);
Expand Down

0 comments on commit 060da30

Please sign in to comment.