Skip to content

Commit

Permalink
OhScrap Released
Browse files Browse the repository at this point in the history
  • Loading branch information
severedsolo committed Mar 21, 2018
1 parent 512f099 commit 6fbd06b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions GameData/Severedsolo/OhScrap/OhScrap.version
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"NAME" : "Oh Scrap",
"URL" : "https://github.com/severedsolo/UPFM/blob/master/UPFM/Untitled%20Part%20Failure%20Mod/bin/Release/GameData/UPFM.version",
"DOWNLOAD" : "https://github.com/severedsolo/UPFM/releases",
"URL" : "https://github.com/severedsolo/OhScrap/blob/master/GameData/Severedsolo/OhScrap/OhScrap.version",
"DOWNLOAD" : "https://github.com/severedsolo/OhScrap/releases",
"GITHUB" :
{
"USERNAME" : "severedsolo",
Expand Down
2 changes: 1 addition & 1 deletion OhScrap/Randomiser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public double NextDouble()

private void PopulateShuffleBag(List<double> shuffleBag, int i)
{
for (double d = 0.01f; d < 1.0; d += 0.01f)
for (double d = 0.001f; d < 1.0; d += 0.001f)
{
if (shuffleBag.Contains(d)) continue;
shuffleBag.Add(d);
Expand Down

0 comments on commit 6fbd06b

Please sign in to comment.