Skip to content

Commit

Permalink
Fix percentage chance.
Browse files Browse the repository at this point in the history
  • Loading branch information
kolinkrewinkel committed Dec 9, 2013
1 parent b1425cd commit 07b32b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/bitlimit/Tweaks/TweaksListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ public void run()
{
if (this.block.getType() == Material.AIR)
{
boolean shouldDrop = getRandomBoolean(1F);
boolean shouldDrop = getRandomBoolean(0.005F);
if (!shouldDrop)
{
return;
Expand Down

0 comments on commit 07b32b4

Please sign in to comment.