CurseForge · Minecraft mod
Utility Core Fixes
Utility Core Fixes - Compatibility fixes and crash prevention for modded Minecraft servers.
Quick answer
Which Utility Core Fixes release matches 26.2?
Utility Core Fixes (2.5.1) targets 26.2 with NeoForge. 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 Utility Core Fixes 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 Utility Core Fixes (2.5.1) need?
Utility Core Fixes (2.5.1) on 26.2. Every mod below is checked against that same setup.
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 Utility Core Fixes without breaking your instance.
Built for Utility Core Fixes (2.5.1) on 26.2. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use Utility Core Fixes (2.5.1). It targets 26.2 with NeoForge; 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 Utility Core Fixes (2.5.1). It opens that exact file at the source.
About this project
What does Utility Core Fixes add?
⚙️ Utility Core Fixes
Compatibility fixes and crash prevention for modded Minecraft servers.
✨ Overview
Utility Core Fixes is a Swiss Army knife of crash prevention and compatibility fixes for modded Minecraft servers. Each fix targets a specific broken interaction between popular mods (or vanilla) that would otherwise crash the server or break gameplay. All features are toggleable individually from config/utility_core_fixes-common.toml (or the in-game mod menu).
What it covers:
- Server safety — clamp negative damage, cap OutpostZero infection damage
- Mod compatibility — Corail Tombstone, Curios API, EvilCraft, OutpostZero fixes
- World integrity — remove orphaned block entity data to stop chunk-load crashes
- Anti-cheat tuning — whitelist entities from vanilla's
moved too quicklyvehicle check - Nether portal reliability — remembers the correct return portal instead of vanilla's error-prone closest-portal search
🎯 Features
🛡️ Negative Damage Fix
Clamps negative damage values to zero, preventing IllegalArgumentException: Damage cannot be negative server crashes from any mod interaction (e.g., Apothic Attributes + Tombstone).
🧬 OutpostZero Infection Damage Cap
Caps outpostzero:infection damage to 10,000 so armor is not destroyed before death events fire.
🔨 Block Entity Mismatch Fix
Prevents crashes from stale block entity NBT by removing orphaned block entity data when a block/entity type mismatch is detected on chunk load (e.g., after a mod that changed block entity types is removed).
🕵 Curios Loot Predicate Crash Fix
Prevents a server crash caused by Curios API's NBT merging during loot table predicate evaluation. Requires Curios to be present, but the mod does not hard-depend on it.
☯️ Corail Tombstone Compatibility
- GUI Scale Fix — Prevents Tombstone from forcing GUI scale to 4 when opening its menus; restores your configured scale on close
- Item Init Fix — Properly initializes NBT data for Tombstone items (lollipop color, magic_scroll random effect) when obtained via
/giveor creative menu - Error Handler — Suppresses mixin errors from Tombstone's
ItemInputMixinto prevent crashes on server startup
🚕 Vehicle Anti-Cheat Whitelist
Whitelists entity types from vanilla's moved too quickly vehicle anti-cheat, preventing spam of warnings like entity.evilcraft.broom (vehicle of X) moved too quickly!. Hooks the inline vehicle check inside ServerGamePacketListenerImpl.handleMoveVehicle (the dedicated isVehicleMovingTooFast / checkVehicleMovement methods no longer exist in 26.2).
- Supports wildcards:
"modid:*"whitelists every entity of that mod - Scoped redirect: only neutralizes the vehicle check for whitelisted vehicles, leaving player movement, difficulty and gamemode permission checks untouched
🌞 Nether Return Portal Fix
Fixes vanilla's unreliable Nether portal linking in multiplayer: normally, returning through a portal searches for the closest portal on the other side instead of the exact one you originally used, which can send you to the wrong portal when several exist near each other. This fix remembers which portal you departed from every time you cross between the Overworld and the Nether, paired with the portal you arrived at, and redirects you back to that exact remembered portal on the return trip — falling back to vanilla behavior if it no longer exists.
⚙️ Fully Configurable
Every feature can be enabled/disabled individually via config/utility_core_fixes-common.toml:
| Config | Default | Mod | Why |
|---|---|---|---|
enableTombstoneGuiScaleFix |
true | Corail Tombstone | Tombstone forces GUI scale to 4 when opening its screens. This restores the original scale when closing. |
enableTombstoneItemInitFix |
true | Corail Tombstone | Tombstone items (lollipop, magic_scroll) obtained via /give lack proper NBT data. This initializes them correctly. |
enableTombstoneErrorHandler |
true | Corail Tombstone | Tombstone's ItemInputMixin fails to apply on certain NeoForge versions. Instead of crashing, this suppresses the error gracefully. |
enableNegativeDamageFix |
true | Apothic Attributes + Tombstone | Apothic critical strikes + Tombstone Decrepitude can produce negative damage values, crashing the server with IllegalArgumentException: Damage cannot be negative. This clamps damage to 0. |
enableOutpostZeroDamageCap |
true | OutpostZero | OutpostZero infection damage can bypass death events and destroy armor before the player dies. Caps damage at 10000 to allow death events to fire first. |
enableBlockentityMismatchFix |
true | Any mod that changes block entity types | Orphaned block entity NBT from a removed/changed mod crashes chunk loading. This strips the stale data instead. |
enableCuriosLootPredicateFix |
true | Curios API | Curios' NBT merging during loot table predicate evaluation crashes the server. This neutralizes the failing merge. |
enableVehicleAntiCheatWhitelist |
true | Vanilla / EvilCraft | Whitelists configured entity types from the moved too quickly vehicle anti-cheat. |
vehicleAntiCheatWhitelist |
["evilcraft:broom"] |
EvilCraft | List of entity type IDs (namespace:path) to whitelist. Supports wildcards like "modid:*". |
enableNetherReturnPortalFix |
true | Vanilla | Vanilla's closest-portal search can send players to the wrong Nether portal on return trips. This remembers and redirects to the exact portal originally used. |
📄 Requirements
| Minecraft | 26.2 |
|---|---|
| NeoForge | 26.2.0.37-beta+ |
Side: Client + Server (universal). Install on both for all fixes to apply.
Optional dependencies (fixes only activate when the mods are present):
- Corail Tombstone
- OutpostZero
- Curios API
- EvilCraft (for vehicle anti-cheat whitelist)
🎮 How to Use
- Install the mod on both client and server.
- Nothing to configure for the defaults to work — every fix is enabled by default.
- Disable anything you don't need via
config/utility_core_fixes-common.tomlor the in-game mod menu. - For the vehicle anti-cheat whitelist: add the entity IDs you want to allow to
vehicleAntiCheatWhitelist(wildcards supported).
🙏 Credits
Developed by Stalking Dragons.

https://codex.skdragons.com/
Codex Stalking Dragons — Minecraft Modding
Project description from CurseForge.
Pick your setup
Utility Core Fixes 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
Utility Core Fixes versions and loaders
Utility Core Fixes (2.5.1)
utility_core_fixes-26.2-neoforge-26.2.0.57-2.5.1.jar
22 Aug 2026
Utility Core Fixes (2.5.0)
utility_core_fixes-26.2-neoforge-26.2.0.57-2.5.0.jar
22 Aug 2026
Utility Core Fixes (2.4.0)
utility_core_fixes-26.2-neoforge-26.2.0.57-2.4.0.jar
20 Aug 2026
Utility Core Fixes (2.3.5)
utility_core_fixes-26.2-neoforge-26.2.0.45-beta-2.3.5.jar
18 Aug 2026
Utility Core Fixes (2.3.4)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.3.4.jar
18 Aug 2026
Utility Core Fixes (2.3.3)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.3.3.jar
18 Aug 2026
Utility Core Fixes (2.3.2)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.3.2.jar
17 Aug 2026
Utility Core Fixes (2.3.1)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.3.1.jar
17 Aug 2026
Utility Core Fixes (2.3.0)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.3.0.jar
13 Aug 2026
Utility Core Fixes (2.2.2)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.2.2.jar
13 Aug 2026
Utility Core Fixes (2.2.1)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.2.1.jar
13 Aug 2026
Utility Core Fixes (2.2.0)
utility_core_fixes-26.2-neoforge-26.2.0.37-beta-2.2.0.jar
12 Aug 2026
Looking for an older file? The official CurseForge project page is in Resources.