Plutonium244
Plutonium ChunkRender Optimizer drastically reduces CPU and GPU load by limiting rendering to only the blocks that have actually been modified.
Plutonium244
Plutonium244 — Smarter Chunk Rendering for Minecraft
> Stop re-rendering what hasn't changed. > Plutonium244 is a Fabric optimization mod that targets one of Minecraft's most wasteful rendering habits: invalidating an entire chunk when only a single block changes.
---
The Problem
Every time a block is placed, broken, or updated in Minecraft, the game marks the entire 16×16 chunk as dirty and queues it for a full re-render — even if only one block changed in a small corner of that chunk.
In busy environments — redstone contraptions, players building, entities interacting — this creates hundreds of unnecessary render calls per second, hammering your CPU and GPU for no reason.
---
The Plutonium Solution
Plutonium244 subdivides each chunk into 16 subchunk sections of 4×4 blocks and tracks updates at that granular level.
When a block changes, only its exact 4×4 subchunk section is marked dirty — not the whole chunk. The result: drastically fewer render invalidations, lower CPU and GPU load, and smoother gameplay.
``` Vanilla Minecraft: [ block changes ] → entire 16×16 chunk re-rendered Plutonium244: [ block changes ] → only the 4×4 section re-rendered ```
---
Features
| Feature | Description | |---|---| | Client & Server Ready | Each chunk split into 16 precise sections — only the affected one is updated | | Client & Server Ready | Internal Minecraft events (world gen, loading) are ignored to prevent false invalidations | | Client & Server Ready | Compatible mods detected and logged at startup automatically | | Client & Server Ready | Works in both environments out of the box |
---
Works Great Alongside
Plutonium244 automatically detects and integrates with these popular optimization mods:
<table> <tr> <td align="center">⚡ Sodium</td> <td align="center">🪨 Lithium</td> <td align="center">🌊 Krypton</td> </tr> <tr> <td align="center">💎 Indium</td> <td align="center">⚙️ C2ME</td> <td align="center">🗺️ Chunky</td> </tr> </table>
---
Requirements
- Dependency: 1.21.11 (Java Edition) - Dependency: Fabric 0.18.5+ - Dependency: Fabric API
---
⚠️ Early Development Notice
Plutonium244 is currently in active early development. The subchunk tracking system is fully functional, but measurable performance gains will vary depending on your environment, installed mods, and how block-update-heavy your gameplay is.
> Found a bug or have a suggestion? Open an issue and help shape the mod's future!
---
About
Made with ☢️ by BlackGiack with Mit licence
---
*Plutonium244 is not affiliated with or endorsed by Mojang or Microsoft.*