We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 925c6f2 commit 7068542Copy full SHA for 7068542
2 files changed
UniversalUnityHooks/AssemblyHelper.cs
@@ -33,7 +33,10 @@ public void FetchAndLoadAll()
33
{
34
Program.Attributes.Add(kvp.Key, kvp.Value);
35
}
36
- Program.Attributes[kvp.Key].AddRange(kvp.Value);
+ else
37
+ {
38
+ Program.Attributes[kvp.Key].AddRange(kvp.Value);
39
+ }
40
41
timer.Stop();
42
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
@@ -11,5 +11,5 @@
11
[assembly: AssemblyCulture("")]
12
[assembly: ComVisible(false)]
13
[assembly: Guid("159d4d35-e53d-46df-9cb5-9f43fdea438f")]
14
-[assembly: AssemblyVersion("2.1.2.0")]
15
-[assembly: AssemblyFileVersion("2.1.2.0")]
+[assembly: AssemblyVersion("2.1.3.0")]
+[assembly: AssemblyFileVersion("2.1.3.0")]
0 commit comments