File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
GoInfoGame/GoInfoGame/quests/LongQuests/Components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ private extension QuestOptions {
166166 }
167167
168168 private func initializeSelectedValues( ) {
169- let currentSelectedValues = Set ( ( selectedChoice? . value ?? " " ) . components ( separatedBy: " , " ) . filter { !$0. isEmpty } )
169+ let currentSelectedValues = Set ( ( selectedChoice? . value ?? " " ) . components ( separatedBy: " ; " ) . filter { !$0. isEmpty } )
170170 if selectedValues != currentSelectedValues {
171171 selectedValues = currentSelectedValues
172172 }
@@ -181,7 +181,7 @@ private extension QuestOptions {
181181 }
182182
183183 private func updateSelectedChoice( ) {
184- let combinedValue = selectedValues. sorted ( ) . joined ( separator: " , " )
184+ let combinedValue = selectedValues. sorted ( ) . joined ( separator: " ; " )
185185
186186 if combinedValue. isEmpty {
187187 if selectedChoice != nil {
You can’t perform that action at this time.
0 commit comments