diff --git a/MLAPI/Attributes/SyncedVar.cs b/MLAPI/Attributes/SyncedVar.cs
index 19e7111..c469874 100644
--- a/MLAPI/Attributes/SyncedVar.cs
+++ b/MLAPI/Attributes/SyncedVar.cs
@@ -11,7 +11,7 @@ namespace MLAPI.Attributes
///
/// The method name to invoke when the SyncVar get's updated.
///
- public string hook;
+ public string hookMethodName;
///
/// If true, the syncedVar will only be synced to the owner.
///
diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs
index 9c08c75..56593ac 100644
--- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs
+++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs
@@ -213,24 +213,24 @@ namespace MLAPI.MonoBehaviours.Core
{
if(sortedFields[i].IsDefined(typeof(SyncedVar), true))
{
- object[] syncedVarAttributes = sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true);
- MethodInfo method = null;
- if (!string.IsNullOrEmpty(((SyncedVar)syncedVarAttributes[0]).hook))
- {
- method = GetType().GetMethod(((SyncedVar)syncedVarAttributes[0]).hook, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance);
- break;
- }
+ SyncedVar attribute = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]);
+
+ MethodInfo hookMethod = null;
+
+ if (!string.IsNullOrEmpty(attribute.hookMethodName))
+ hookMethod = GetType().GetMethod(attribute.hookMethodName, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance);
+
FieldType fieldType = FieldTypeHelper.GetFieldType(sortedFields[i].FieldType);
if (fieldType != FieldType.Invalid)
{
syncedVarFields.Add(new SyncedVarField()
{
Dirty = false,
- Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target,
+ Target = attribute.target,
FieldInfo = sortedFields[i],
FieldType = fieldType,
FieldValue = sortedFields[i].GetValue(this),
- HookMethod = method
+ HookMethod = hookMethod
});
}
else