Back to mods
Utility Core Fixes project artwork

CurseForge · Minecraft mod

Utility Core Fixes

Utility Core Fixes - Compatibility fixes and crash prevention for modded Minecraft servers.

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

Quick answer

Which Utility Core Fixes release matches 26.2?

Updated 5 days ago
Best match for your filters Utility Core Fixes (2.5.1)
Game version 26.2
Loader NeoForge

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.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge
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 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.

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 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.

  1. 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.

  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 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.

CurseForge Downloads CurseForge Version NeoForge


✨ 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 quickly vehicle 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 /give or creative menu
  • Error Handler — Suppresses mixin errors from Tombstone's ItemInputMixin to 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

  1. Install the mod on both client and server.
  2. Nothing to configure for the defaults to work — every fix is enabled by default.
  3. Disable anything you don't need via config/utility_core_fixes-common.toml or the in-game mod menu.
  4. For the vehicle anti-cheat whitelist: add the entity IDs you want to allow to vehicleAntiCheatWhitelist (wildcards supported).

🙏 Credits

Developed by Stalking Dragons.

Codex 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.

1 available setups

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

16 of 16 releases match
Clear filters

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