0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 02:10:45 -05:00

don't ref types

This commit is contained in:
Cj 2024-12-31 14:17:42 -05:00
parent 6e8420477e
commit 146aac9c83

View File

@ -52,7 +52,7 @@ public class ReMapper
var types = Module.GetTypes();
TryDeObfuscate(ref types, assemblyPath);
TryDeObfuscate(types, assemblyPath);
FindBestMatches(types);
ChooseBestMatches();
@ -72,7 +72,7 @@ public class ReMapper
WriteAssembly();
}
private void TryDeObfuscate(ref IEnumerable<TypeDef> types, string assemblyPath)
private void TryDeObfuscate(IEnumerable<TypeDef> types, string assemblyPath)
{
if (!Module!.GetTypes().Any(t => t.Name.Contains("GClass")))
{