From 5a978fcd1843c3e090111ad9ad6f636e50682281 Mon Sep 17 00:00:00 2001 From: past-due <30942300+past-due@users.noreply.github.com> Date: Wed, 26 Jun 2024 11:58:28 -0400 Subject: [PATCH] Fix: realmain: mods/campaign is no longer versioned --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index d4f0863ce6b..97888d23494 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1983,7 +1983,7 @@ int realmain(int argc, char *argv[]) make_dir(MultiCustomMapsPath, "maps", nullptr); // needed to prevent crashes when getting map PHYSFS_mkdir(version_getVersionedModsFolderPath("autoload").c_str()); // mods that are automatically loaded - PHYSFS_mkdir(version_getVersionedModsFolderPath("campaign").c_str()); // campaign only mods activated with --mod_ca=example.wz + PHYSFS_mkdir("mods/campaign"); // campaign only mods - no longer versioned because of new campaign mod packaging and selector PHYSFS_mkdir("mods/downloads"); // mod download directory - NOT currently versioned PHYSFS_mkdir(version_getVersionedModsFolderPath("global").c_str()); // global mods activated with --mod=example.wz PHYSFS_mkdir(version_getVersionedModsFolderPath("multiplay").c_str()); // multiplay only mods activated with --mod_mp=example.wz