Revert "Support plugin and archive symlinks"

This reverts commit 9f45282bee. This is a
temporary revert so that I can release v0.28.1 without any new features.
This commit is contained in:
Oliver Hamlet
2025-08-08 11:28:32 +01:00
parent 00ee2b42a6
commit da0e35bb2b
5 changed files with 20 additions and 79 deletions
+3 -4
View File
@@ -493,10 +493,9 @@ private:
const std::vector<std::pair<std::string, bool>>& loadOrder) const {
if (gameType_ == GameType::tes3) {
std::ofstream out(gamePath / "Morrowind.ini");
out << "[Game Files]" << std::endl;
for (auto i = 0; i < loadOrder.size(); i += 1) {
if (loadOrder[i].second) {
out << "GameFile" << i << "=" << loadOrder[i].first << std::endl;
for (const auto& plugin : loadOrder) {
if (plugin.second) {
out << "GameFile0=" << plugin.first << std::endl;
}
}
} else if (gameType_ == GameType::openmw) {