Skip to content

Commit

Permalink
#2 Auto Sieve Upgrades get pulled out - Fixed. Removed some debug code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Lydeamore committed Jan 4, 2015
1 parent 6ae92d7 commit 877bd1f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,6 @@ public double getFortuneModifier()
}
else
{
System.out.println("STACK: "+inventory[22].stackSize+", CHANCE: "+(6.0/64) * inventory[22].stackSize);
return (6.0/64) * inventory[22].stackSize;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ public boolean canInsertItem(int slot, ItemStack item, int side) {

@Override
public boolean canExtractItem(int slot, ItemStack item, int side) {
if (slot >= 1) return true;
if (slot >= 1 && slot < 21) return true;
return false;
}

Expand Down

0 comments on commit 877bd1f

Please sign in to comment.