File Details
superman_toggle_addon-1.0.6.jar
- R
- Apr 21, 2026
- 172.20 KB
- 36
- 1.20.1
- Forge
File Name
superman_toggle_addon-1.0.0.jar
Supported Versions
- 1.20.1
Curse Maven Snippet
Particle Fix
Fixed missing Superman ability particles
Resolved an issue where ability particles (heat vision, focused charge, solar flare, clap and breath) were not rendering properly, especially in modpacks.
🔧 Cause
The addon replaced the original client runtime, which stopped the execution of the particle pipeline (SupermanClient.spawnPowerParticles).
✅ Fix
- Restored
SupermanClient.spawnPowerParticles(minecraft)insideBaseClientRuntimeOverrideduring client tick (END phase) - Kept the custom client runtime from the addon
- Kept the custom Heat Vision renderer
- Adjusted the particle suppressor to only remove old beam particles, preventing duplication
🎯 Result
- All ability particles are working again
- Heat Vision continues using the new renderer (no duplication)
- Improved compatibility with modpacks and optimization mods

