Back to mods
Enhanced Block Entities Reloaded project artwork

CurseForge · Minecraft mod

Enhanced Block Entities Reloaded

[UNOFFICIAL PORT] Reduce block entity FPS lag with almost no compromises, and improve their visuals

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Enhanced Block Entities Reloaded release should I use?

Updated today
Latest stable file Enhanced Block Entities Reloaded 0.13.1 for Forge 26.3
Game version 26.3
Loader Forge

Enhanced Block Entities Reloaded 0.13.1 for Forge 26.3 targets 26.3 with Forge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is Enhanced Block Entities Reloaded required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Forge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Enhanced Block Entities Reloaded 0.13.1 for Forge 26.3 need?

Enhanced Block Entities Reloaded 0.13.1 for Forge 26.3. Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add Enhanced Block Entities Reloaded without breaking your instance.

Built for Enhanced Block Entities Reloaded 0.13.1 for Forge 26.3. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use Enhanced Block Entities Reloaded 0.13.1 for Forge 26.3. It targets 26.3 with Forge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside Enhanced Block Entities Reloaded 0.13.1 for Forge 26.3. It opens that exact file at the source.

About this project

What does Enhanced Block Entities Reloaded add?

UNOFFICIAL PORT

This is an unofficial port of the original Enhanced Block Entities mod, adding support for newer minecraft versions (1.21.5+) as well as Forge and NeoForge!

Enhanced Block Entities

EBE is a 100% client side Minecraft mod which aims to increase the performance of block entity rendering, as well as offer customizability via resource packs.

How does it work? EBE Makes some block entities use baked block models rather than laggy entity models.

Is it just an optimization mod? EBE isn't just an optimization mod, some side effects of its optimizations are many visual improvements.
These may include:

  • Smooth lighting on block entities
  • Being able to remodel block entities with block models
  • Toggling features like christmas chests
  • Being able to see block entities from as far away as possible

What about animations? The best part about EBE is that you still get to keep animations, while gaining the performance boost of baked models! Most animated block entity models will only render when absolutely necessary.

Can I use it with Sodium? Yes.

  • EBE 0.10.2 and above are fully compatible with Sodium 0.6+
  • Earlier EBE versions require installing Indium along with Sodium 0.5.11 or below.

FAQ and Help

Q: I need help with the mod/need to report a bug!
A: If the issue is a BUG please report it on our issue tracker ("Issues" tab at the top of the page)

Q: My chests are invisible!
A: You may be using a resource pack that conflicts with EBE. Open the Block Entity Settings menu (through EBE's Mod Menu entry or through vanilla Video Settings) and enable "Force Resource Pack Compatibility".

Q: My chests are still invisible!
A: You're likely using a Sodium version lower than 0.4, which doesn't support certain Fabric Rendering features by default. If you need to use a Sodium version lower than 0.4 with EBE, you should install Indium.

FPS Boost

Rendering 1700 chests:

Vanilla

Before

With EBE

After
A 155% frame rate increase!

Is your mod incompatible with EBE?

If you are the developer of a mod that makes changes to block entity rendering, your mod will be broken by EBE. Fortunately, EBE provides an API that allows you to force-disable its features, allowing your mod to function instead.
You don't need to add EBE as a dependency in your development environment either!

Add the Entrypoint

fabric.mod.json:

{
    "entrypoints": {
        "main": [...],
        "client": [...],
        "ebe_v1": [
            "my.mod.compat.EBECompatibility"
        ]
    }
}

Need to modify config values? Implement BiConsumer<Properties, Map<String, Text>>

my.mod.compat.EBECompatibility:

public class EBECompatibility implements BiConsumer<Properties, Map<String, Text>>, ... {
    @Override
    public void accept(Properties overrideConfigValues, Map<String, Text> overrideReasons) {
        overrideConfigValues.setProperty("render_enhanced_chests", "false");

        overrideReasons.put("render_enhanced_chests",
                Text.literal("EBE Enhanced Chests are not compatible with my mod!")
                        .formatted(Formatting.YELLOW));
    }

    ...
}

The accept(Properties, Map<String, Text>) function is called when EBE loads config values. You can override a desired config value by setting the corresponding property of overrideConfigValues. This will also gray out the option in the config menu.
To explain to users why your mod made that change, you can add a text component to the overrideReasons map corresponding to the key of the option you changed.
Text is net.minecraft.text.Text when using Yarn mappings.

Need to manually reload EBE? Implement Consumer<Runnable>

my.mod.compat.EBECompatibility:

public class EBECompatibility implements Consumer<Runnable>, ... {
    private static Runnable ebeReloader = () -> {};

    ...

    @Override
    public void accept(Runnable ebeConfigReloader) {
        ebeReloader = ebeConfigReloader;
    }
}

If your mod needs to modify EBE's config values depending on loaded resources, it may encounter load order problems. This can be somewhat fixed by manually reloading EBE.
The accept(Runnable) function is called when EBE is first loaded. The Runnable executes EnhancedBlockEntities.load(). Store this in a field so you can execute it whenever necessary.

void onMyModResourceReload() {
    EBECompatibility.someParameter = true;
    EBECompatibility.ebeReloader.run();
    // Your config modification handler in EBECompatibility can change 
    // its behavior based on EBECompatibility.someParameter.
}

Project description from CurseForge.

Pick your setup

Enhanced Block Entities Reloaded by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

91 available setups

Showing the newest 12 of 24 game versions. Older files are in the list below.

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Enhanced Block Entities Reloaded versions and loaders

100 of 100 releases match

Looking for an older file? The official CurseForge project page is in Resources.