mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-19 03:05:29 +02:00
Fix media overriding regression (#12602)
This commit is contained in:
@@ -94,7 +94,11 @@ void ServerModManager::getModNames(std::vector<std::string> &modlist) const
|
||||
|
||||
void ServerModManager::getModsMediaPaths(std::vector<std::string> &paths) const
|
||||
{
|
||||
for (const auto &spec : configuration.getMods()) {
|
||||
// Iterate mods in reverse load order: Media loading expects higher priority media files first
|
||||
// and mods loading later should be able to override media of already loaded mods
|
||||
const auto mods = configuration.getMods();
|
||||
for (auto it = mods.crbegin(); it != mods.crend(); it++) {
|
||||
const ModSpec &spec = *it;
|
||||
fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "textures");
|
||||
fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "sounds");
|
||||
fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "media");
|
||||
|
Reference in New Issue
Block a user