Skip to content

Commit 978a7be

Browse files
committed
Bump MossyPlugin
1 parent 010c307 commit 978a7be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ org.gradle.jvmargs=-Xmx24G
77
org.gradle.parallel=true
88

99
# Mossy Plugin
10-
mossy_plugin_version = 1.2.3
10+
mossy_plugin_version = 1.2.4
1111

1212
# Stonecutter
1313
dev.kikugie.stonecutter.hard_mode=true

src/main/java/net/lopymine/pe/manager/ParticleEffectsManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private static void registerParticleTypeForEffect(MobEffect statusEffect, Identi
8484
// CREATE PARTICLE TYPE
8585
ParticleOptions type = Registry.register(
8686
BuiltInRegistries.PARTICLE_TYPE,
87-
modEffectId, // WE NEED IT TO AVOID ISSUE WITH VANILLA TEXTURED PARTICLES
87+
modEffectId,
8888
FabricParticleTypes.simple()
8989
);
9090

@@ -111,6 +111,7 @@ private static void registerParticleTypeForEffect(MobEffect statusEffect, Identi
111111

112112
private static Identifier getModEffectId(MobEffect statusEffect, Identifier effectId) {
113113
boolean bl = MINECRAFT_EFFECTS_WITH_TEXTURED_PARTICLE.containsValue(statusEffect);
114+
// WE NEED IT TO AVOID ISSUE WITH VANILLA TEXTURED PARTICLES
114115
return ParticleEffects.id(effectId.getPath() + (bl ? "_new" : ""));
115116
}
116117

0 commit comments

Comments
 (0)