mirror of https://github.com/quasar/Quasar.git
Merge pull request #154 from d3agle/master
IDisposable TypeloadException fix
This commit is contained in:
commit
c009999af2
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue