this post was submitted on 17 Aug 2026
31 points (100.0% liked)

Gaming

5158 readers
129 users here now

The Lemmy.zip Gaming Community

For news, discussions and memes!


Community Rules

This community follows the Lemmy.zip Instance rules, with the inclusion of the following rule:

You can see Lemmy.zip's rules by going to our Code of Conduct.

What to Expect in Our Code of Conduct:


If you enjoy reading legal stuff, you can check it all out at legal.lemmy.zip.


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Zahille7@lemmy.world 0 points 4 days ago (1 children)

Or mods will break for any game after an update?

[โ€“] Quetzalcutlass@lemmy.world 1 points 1 day ago* (last edited 1 day ago)

Yes and no. The thing about Bethesda's games is they use a scripting language for mods. That means there should be no ABI compatibility breakages between versions like you'd see with compiled programs; things should only break if an API hook or parent script changes. And Bethesda famously don't fix scripting errors in their games after the first few months of patches, leading to their titles universally receiving unofficial patches maintained by the community to fix the thousands of bugs Bethesda leaves intact.

Which makes it weird that their updates still tend to break mods, since the parts of the game that mods interact with* should be stable. Granted, they're messing with the Creation Club so some impact should be expected, but the vast majority of mods don't rely on that.

* Mods reliant on the third-party Skyrim Script Extender being a major exception, as that's a compiled library that uses hardcoded memory offsets to target unexposed functions in the engine, meaning unlike scripts it has to be changed and recompiled after every engine update.