This commit is contained in:
vis2k 2020-08-21 18:04:32 +02:00
parent fe32557a38
commit 7b9066832b

View File

@ -372,9 +372,9 @@ static bool WeaveAssemblies(IEnumerable<string> assemblies, IEnumerable<string>
try
{
foreach (string ass in assemblies)
foreach (string asm in assemblies)
{
if (!Weave(ass, unityAssembly, mirrorAssembly, dependencies, unityEngineDLLPath, mirrorNetDLLPath, outputDir))
if (!Weave(asm, unityAssembly, mirrorAssembly, dependencies, unityEngineDLLPath, mirrorNetDLLPath, outputDir))
{
return false;
}