Skip to content

Commit

Permalink
Fix Oredict-Recipematch being messed up
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Sep 30, 2015
1 parent b50419c commit c798d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/slimeknights/mantle/util/RecipeMatch.java
Expand Up @@ -158,7 +158,7 @@ public Oredict(String oredictEntry, int amountNeeded) {
}

public Oredict(String oredictEntry, int amountNeeded, int amountMatched) {
super(amountNeeded, amountMatched);
super(amountMatched, amountNeeded);
this.oredictEntry = OreDictionary.getOres(oredictEntry);
}

Expand Down

0 comments on commit c798d61

Please sign in to comment.