mirror of
https://github.com/sp-tarkov/assembly-tool.git
synced 2025-02-12 20:50:44 -05:00
Attempt fixing ambiguous method naming
This commit is contained in:
parent
4830fe1d22
commit
22c4d67d2a
@ -49,6 +49,10 @@ internal class Renamer
|
||||
foreach (var method in methods)
|
||||
{
|
||||
var name = method.Name.String.Split(".");
|
||||
|
||||
if (methods.Any(m => m.Name.String.Contains(name[1])))
|
||||
continue;
|
||||
|
||||
method.Name = name[1];
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user