Merge pull request #154 from d3agle/master

IDisposable TypeloadException fix
This commit is contained in:
MaxXor 2015-05-20 09:13:16 +02:00
commit c009999af2
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ private void RenameInType(TypeDefinition typeDef)
if (typeDef.Namespace.StartsWith("My") || typeDef.Namespace.StartsWith("xClient.Core.Packets") ||
typeDef.Namespace == "xClient.Core" || typeDef.Namespace == "xClient.Core.Elevation" ||
typeDef.Namespace == "xClient.Core.Compression" || typeDef.Namespace.StartsWith("ProtoBuf") ||
typeDef.Namespace.Contains("xClient.Core.ReverseProxy"))
typeDef.Namespace.Contains("xClient.Core.ReverseProxy") || typeDef.HasInterfaces)
return;
TypeOverloader.GiveName(typeDef);