From 3af22e641f313ebbd5fcd128367742a34b794d78 Mon Sep 17 00:00:00 2001 From: Isaac0-dev <62234577+Isaac0-dev@users.noreply.github.com> Date: Wed, 25 Jun 2025 15:03:59 +1000 Subject: [PATCH] fix mod file loading order for mod dev mode --- src/pc/mods/mod.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pc/mods/mod.c b/src/pc/mods/mod.c index d0acabd5c..7b1b04aed 100644 --- a/src/pc/mods/mod.c +++ b/src/pc/mods/mod.c @@ -556,6 +556,9 @@ bool mod_refresh_files(struct Mod* mod) { return false; } + // set loading order + mod_set_loading_order(mod); + // update cache for (int i = 0; i < mod->fileCount; i++) { struct ModFile* file = &mod->files[i];