CurseForge · Minecraft mod
MCreatorMemFix
Fixes a large memory allocation bug in some MCreator mods.
Quick answer
Which MCreatorMemFix release should I use?
MCreatorMemFix-1.0.4.jar targets 1.20.1 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 MCreatorMemFix required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does MCreatorMemFix-1.0.4.jar need?
MCreatorMemFix-1.0.4.jar. Change the file and its required mods may change too.
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 MCreatorMemFix without breaking your instance.
Built for MCreatorMemFix-1.0.4.jar. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use MCreatorMemFix-1.0.4.jar. It targets 1.20.1 with Forge; another release may have different loader, side or dependency requirements.
- 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.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside MCreatorMemFix-1.0.4.jar. It opens that exact file at the source.
About this project
What does MCreatorMemFix add?
MCreator Memory Fix
Fixes a large memory allocation bug in some MCreator for Forge 1.20.1 mods. Detects mods on first startup, then a restart is required for effects to activate. Is no longer required for mods made with the Forge 1.20.1 Generator >=1.0 (28/10/2025). This mod still shouldn't have any conflicts with these mods, even if it detects them, but it won't affect them.
About
TLDR
- This mod fixes high allocation rates in some MCreator mods that use a lot of player-attached variables.
- This might result in less GC stuttering, less average/peak memory usage, and even a small FPS gain. Your mileage may vary, and it entirely depends on your installed MCreator mods.
- There shouldn't be any downsides to having this mod installed.
- This mod will detect all applicable mods when you launch the game, but it will not come into effect until you launch the game again.
- Modpack creators should redistribute the
mcreator_mem_fix.jsonfile found in.minecraft/config, and may optionally lock it by adding thelockedkey to the json object found within the config file, and setting it to true. This prevents the mod from regenerating its config when the mod list changes.
Some light technical stuff ahead. Nothing too bad.
The Issue
Whenever an MCreator mod accesses its player variables at all, it creates a new object to serve as a default, then accesses the stored one. If there is no stored one, the default one is used. If there is a stored one, the default one was created for no reason.
Where's the problem? Many MCreator mods like to access player variables a lot. This results in a lot of unnecessary allocations. These allocations can happen many, many times within both ticks and frames, resulting in a large amount of allocations per second.
The Solution
This mod just stops that object from being created every time an MCreator mod wants to access its player variables. It stores a default variables object for each mod, and instead of making a new object every time we access it, we fall back to the stored default. Easy.
There shouldn't be any functional difference with this mod installed.
Effect
Some MCreator mods can allocate up to ~300MB of garbage before the GC does its thing. Memory allocation is a slow operation, and allocating that much memory for no gain is not necessary. With this mod, the memory allocation from MCreator mods, regarding player variables, should drop to next to nothing. This might result in less stuttering, less average/peak memory usage, and even a small FPS gain. Your mileage may vary.
I haven't actually tested much, but this mod shouldn't cause many issues. It's pretty much free, with little-to-no downside.
Compatibility
No idea. Should probably be fine as long as no other mod is touching the same stuff this one touches (obviously, that's usually how compatibility works).
This mod is a little intrusive, it modifies a lot of the original mod's classes, BUT it should be in a relatively clean way.
Any mod that doesn't explicitly touch MCreator mods should be 100% compatible, always. Unless I mess something up.
FAQ
DISCLAIMER: Not a single individual has ever asked me any one of these questions.
How do I make it work for a specific MCreator mod?
Upon running the game, a file in the config directory .minecraft/config will be created. After this file is created, you should restart the game to ensure the detected MCreator mods are modified. After adding new MCreator mods, you should delete this file so the mod rescans your mods. A message is logged when the mod scans for MCreator mods.
Modpack developers may safely redistribute this config file, preventing the end user from having to restart their game. They may also lock this file by adding and setting the locked key to true in the config. This is not really necessary, but it stops the mod from searching for new candidates to modify, saving a few milliseconds on startup.
Something went wrong. How do I fix it?
First things first, try deleting the config and re-running the game once or twice. If that doesn't work, submit an issue here.
You seem really cool. Can you be my friend?
No. Maybe.
Can I use this in a modpack?
Yeah, it's designed for that.
Project description from CurseForge.
Pick your setup
MCreatorMemFix by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
MCreatorMemFix versions and loaders
MCreatorMemFix-1.0.4.jar
26 Oct 2025
MCreatorMemFix-1.0.1.jar
18 Aug 2025
MCreatorMemFix-1.0.0.jar
20 Jul 2025
Looking for an older file? The official CurseForge project page is in Resources.