Fixed potential issue when syncing only targeted messages

This commit is contained in:
Albin Corén 2018-04-17 19:49:53 +02:00
parent 1838808860
commit df109debf4
2 changed files with 12 additions and 1 deletions

View File

@ -36,7 +36,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>..\..\MLAPI-Examples\Assets\MLAPI\</OutputPath>
<OutputPath>..\..\MLAPI-Examples\Assets\MLAPI\Lib\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>

View File

@ -744,6 +744,17 @@ namespace MLAPI.MonoBehaviours.Core
InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); //Send only to target
}
if (nonTargetDirtyCount == 0)
{
//Seems like ONLY targeted syncedVars was changed. Thus we need to remove the dirty tags and return;
for (int i = 0; i < syncedVarFields.Count; i++)
{
syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this);
syncedVarFields[i].Dirty = false;
}
return;
}
//It's sync time. This is the NON target receivers packet.
using (MemoryStream stream = new MemoryStream())
{