mirror of
https://github.com/sp-tarkov/assembly-tool.git
synced 2025-02-12 20:50:44 -05:00
don't ref types
This commit is contained in:
parent
6e8420477e
commit
146aac9c83
@ -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")))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user