Skip to content

Commit c41b5d8

Browse files
committed
Rename a local variable to prepare for .NET 10 support
1 parent 53a5421 commit c41b5d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

WowPacketParser/Store/Objects/UpdateFields/LegacyImplementation/ConversationData.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ public DynamicUpdateField<IConversationActor> Actors
4545
{
4646
get
4747
{
48-
var field = new DynamicUpdateField<IConversationActor>();
48+
var updateField = new DynamicUpdateField<IConversationActor>();
4949
var actors = DynamicUpdateFields.GetValue<ConversationDynamicField, uint>(ConversationDynamicField.CONVERSATION_DYNAMIC_FIELD_ACTORS).ToList();
5050
var ActorSize = 6;
51-
field.Resize((uint)(actors.Count / ActorSize));
51+
updateField.Resize((uint)(actors.Count / ActorSize));
5252

5353
for (var i = 0; i + ActorSize <= actors.Count; i += ActorSize)
5454
{
@@ -76,10 +76,10 @@ public DynamicUpdateField<IConversationActor> Actors
7676
}
7777
}
7878

79-
field[i / ActorSize] = actor;
79+
updateField[i / ActorSize] = actor;
8080
}
8181

82-
return field;
82+
return updateField;
8383
}
8484
}
8585

0 commit comments

Comments
 (0)