Menu

Guide

Why a game update breaks your mods, and what to do about it

Update day is the same story in every modded game. What actually breaks, why the fix is never instant, and the three options you have while you wait.

2 min read · updated 2026-08-01

Every modded game has the same day. A patch lands, the game updates itself, and the thing you were playing last night no longer starts.

What is actually broken

Almost never the mod file. It is intact, it is where you left it, and it is still the same code it was yesterday.

What broke is the agreement it was relying on. A mod reaches into the game's compiled internals and holds on to specific pieces of it. When a patch renames, moves, splits or deletes one of those pieces, the mod is holding a reference to something that is no longer there, and it fails at the moment it tries to use it.

Sometimes that is a crash at startup, which is the good case, because it names the mod. Sometimes it is a crash forty minutes in when you finally do the thing that mod handles. Occasionally it is worse than a crash: the mod loads, does something subtly wrong, and quietly damages your save.

Why the fix takes as long as it takes

An author has to open their code against the new version, find everything that moved, work out what it moved to, and check that the new arrangement still does what the old one did. For a small patch that is an evening. For a patch that reorganised a whole system it is weeks, and for a mod whose author stopped playing two years ago it is never.

Nobody can shorten this by asking. The one thing that reliably slows it down is being asked repeatedly.

Your three options, and there is no fourth

Wait. The mod gets an update, you install it, you carry on. Sensible if you can play something else meanwhile.

Replace it. Somebody else has usually solved the same problem, sometimes better. This is the option people forget, and it is often the fastest.

Roll back. Go back to the version everything worked on and stay there. This is the right answer far more often than people think, especially for a single player save you care about. A game version is not a subscription. Nothing forces you forward.

The one thing to do before an update, not after

Copy your save folder somewhere the game cannot reach.

A broken mod is an inconvenience. A save that a broken mod half rewrote is the end of that playthrough, and there is no recovering it afterwards. This takes ten seconds and it is the only part of this whole article that is not optional.

Reading the compatibility list

Every project on this site lists the versions its author declared support for, taken from their own release metadata rather than from a description. When a mod page says it supports a version, that is the author saying so at the moment they published the file.

What it cannot tell you is whether a version they never mentioned happens to work anyway. Sometimes it does. The way to find out is a copy of your save and a willingness to lose the afternoon.

Frequently asked

How long until my mods are updated?

Days for a small patch, weeks or months for one that changed a lot. It depends entirely on how much moved and whether the author is still active, and nobody can promise you a date.

Can I stop the game from updating?

On Steam you can set an app to only update on launch and then never launch it through Steam, or pick an older branch where the developer offers one. Neither is guaranteed, and multiplayer will usually refuse to let you connect.

Why did only some of my mods break?

Because they touch different parts of the game. A mod that adds a recipe survives a patch that rewrote the renderer. A mod that draws to the screen does not.

Is a modpack safer than loose mods?

It is more predictable, not safer. A pack is tested as a set, so it breaks all at once and gets fixed all at once, and it moves at the speed of its slowest mod.

Read next