Skip to content

Commit

Permalink
Fix duplicate key exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximumADHD committed Oct 20, 2021
1 parent d91799e commit 9c506cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProjectSrc/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public static void SetValue(string name, object value)
string key = data[1],
val = data[2];

result.Add(key, val);
result[key] = val;
}

return result;
Expand Down
Binary file modified RobloxStudioModManager.exe
Binary file not shown.

0 comments on commit 9c506cb

Please sign in to comment.