Core/Loot: Fixed getting to much loot sometimes.

This commit is contained in:
hondacrx
2018-03-09 23:30:55 -05:00
parent 8f870a0366
commit c650888eeb
3 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ public class RandomHelper
/// <returns></returns>
public static bool randChance(float i)
{
return i > rand.Next(0, 100);
return i > randChance();
}
public static double randChance()