mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
NetworkBehaviourProcessor: changed processed string from confusing UNetVersion to MirrorProcessed
This commit is contained in:
parent
1d4a98b84f
commit
8b40a0c9db
@ -144,17 +144,17 @@ public static bool WriteArguments(ILProcessor worker, MethodDefinition md, strin
|
||||
}
|
||||
|
||||
// mark / check type as processed //////////////////////////////////////
|
||||
// by adding an empty UNetVersion() function
|
||||
// by adding an empty MirrorProcessed() function
|
||||
public static bool WasProcessed(TypeDefinition td)
|
||||
{
|
||||
return td.Methods.Any(method => method.Name == "UNetVersion");
|
||||
return td.Methods.Any(method => method.Name == "MirrorProcessed");
|
||||
}
|
||||
|
||||
public static void MarkAsProcessed(TypeDefinition td)
|
||||
{
|
||||
if (!WasProcessed(td))
|
||||
{
|
||||
MethodDefinition versionMethod = new MethodDefinition("UNetVersion", MethodAttributes.Private, Weaver.voidType);
|
||||
MethodDefinition versionMethod = new MethodDefinition("MirrorProcessed", MethodAttributes.Private, Weaver.voidType);
|
||||
ILProcessor worker = versionMethod.Body.GetILProcessor();
|
||||
worker.Append(worker.Create(OpCodes.Ret));
|
||||
td.Methods.Add(versionMethod);
|
||||
|
Loading…
Reference in New Issue
Block a user