File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 2
2
using System . Collections ;
3
3
using System . Collections . Generic ;
4
4
using System . Linq ;
5
+ using System . Text ;
5
6
using System . Text . RegularExpressions ;
6
7
using KeepCoding . Internal ;
7
8
using UnityEngine ;
@@ -372,7 +373,14 @@ protected IEnumerable<WaitForSecondsRealtime> OnInteractSequence(KMSelectable[]
372
373
373
374
private static bool IsExcluded < T > ( T item ) => item is IEnumerable < char > || item is KMSelectable [ ] ;
374
375
375
- private static string Combine ( in string main , params object [ ] toAppend ) => main + ConvertAll ( toAppend , o => $ " { o } ") ;
376
+ private static string Combine ( in string main , params object [ ] toAppend )
377
+ {
378
+ var builder = new StringBuilder ( main ) ;
379
+
380
+ toAppend . ForEach ( o => builder . Append ( $ " { o } ") ) ;
381
+
382
+ return builder . ToString ( ) ;
383
+ }
376
384
377
385
private IEnumerator ToggleColorblind ( )
378
386
{
You can’t perform that action at this time.
0 commit comments