File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
WowPacketParser/Store/Objects/UpdateFields/LegacyImplementation Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments