| 253 | std::string out; |
| 254 | for (const std::string& id : enabledIds) |
| 255 | { |
| 256 | const Mod* m = Find(id); |
| 257 | if (m == nullptr) |
| 258 | continue; |
| 259 | if (!out.empty()) |
| 260 | out += ';'; |
| 261 | out += m->path; |
| 262 | } |
| 263 | return out; |
| 264 | } |
| 265 | |
| 266 | std::string ModCollection::MountPathForIds(const std::vector<ModId>& ids) const |
| 267 | { |
| 268 | std::string out; |
no test coverage detected