MCPcopy Create free account
hub / github.com/BohemiaInteractive/CWR / FormatMountPath

Method FormatMountPath

engine/Poseidon/Core/ModCollection.cpp:255–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
266std::string ModCollection::MountPathForIds(const std::vector<ModId>& ids) const
267{
268 std::string out;

Callers 3

SetModPathMethod · 0.80
GetModListMethod · 0.80

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected