From 7721b520f55985ed8d008f77a65a455466736d2d Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Fri, 8 Jul 2022 04:16:27 +0700 Subject: [PATCH] Change code to adapt to iterator's refactor --- sources/VotingHandlerAdapter.uc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sources/VotingHandlerAdapter.uc b/sources/VotingHandlerAdapter.uc index 5b921aa..7e02f9c 100644 --- a/sources/VotingHandlerAdapter.uc +++ b/sources/VotingHandlerAdapter.uc @@ -166,11 +166,11 @@ private function string BuildMutatorString(GameMode gameMode) private function string BuildOptionsString(GameMode gameMode) { - local bool optionWasAdded; - local string result; - local string nextKey, nextValue; - local Iter iter; - local AssociativeArray options; + local bool optionWasAdded; + local string result; + local string nextKey, nextValue; + local CollectionIterator iter; + local AssociativeArray options; options = gameMode.GetOptions(); for (iter = options.Iterate(); !iter.HasFinished(); iter.Next()) {