Skip to content

Commit 7068542

Browse files
committed
Added missing 'else' keyword
1 parent 925c6f2 commit 7068542

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

UniversalUnityHooks/AssemblyHelper.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ public void FetchAndLoadAll()
3333
{
3434
Program.Attributes.Add(kvp.Key, kvp.Value);
3535
}
36-
Program.Attributes[kvp.Key].AddRange(kvp.Value);
36+
else
37+
{
38+
Program.Attributes[kvp.Key].AddRange(kvp.Value);
39+
}
3740
}
3841
timer.Stop();
3942
Program.Chalker.WriteSuccess($"Loaded in assembly and {filteredAttributes.Sum(x=>x.Value.Count)} attribute(s) in {timer.GetElapsedMs}ms\r\n");

UniversalUnityHooks/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
[assembly: AssemblyCulture("")]
1212
[assembly: ComVisible(false)]
1313
[assembly: Guid("159d4d35-e53d-46df-9cb5-9f43fdea438f")]
14-
[assembly: AssemblyVersion("2.1.2.0")]
15-
[assembly: AssemblyFileVersion("2.1.2.0")]
14+
[assembly: AssemblyVersion("2.1.3.0")]
15+
[assembly: AssemblyFileVersion("2.1.3.0")]

0 commit comments

Comments
 (0)