Skip to content

Commit 41f177e

Browse files
committed
Fixed the moistener using flipped values for stage and value, close #734
1 parent c1e15ec commit 41f177e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/blamejared/compat/forestry/Moistener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public boolean checkIsRecipe(IMoistenerRecipe recipe) {
106106
@ZenMethod
107107
public static void addFuel(IItemStack item, IItemStack product, int moistenerValue, int stage) {
108108
if(stage >= 0) {
109-
ModTweaker.LATE_ADDITIONS.add(new AddFuel(new MoistenerFuel(toStack(item), toStack(product), moistenerValue, stage)));
109+
ModTweaker.LATE_ADDITIONS.add(new AddFuel(new MoistenerFuel(toStack(item), toStack(product), stage, moistenerValue)));
110110
} else {
111111
LogHelper.logWarning(String.format("No %s Recipe add for %s. Stage parameter must positive!", Moistener.name, item.toString()));
112112
}

0 commit comments

Comments
 (0)