-
Notifications
You must be signed in to change notification settings - Fork 85
Clean up BOP_block_Registrator and convert it to RA2 #761
Clean up BOP_block_Registrator and convert it to RA2 #761
Conversation
GT_Values.RA.stdBuilder().itemInputs(new ItemStack(aStack.getItem(), 1, i)) | ||
.itemOutputs( | ||
GT_Utility.copyAmount( | ||
GT_Mod.gregtechproxy.mNerfedWoodPlank ? ((long) tStack.stackSize) | ||
: (((long) tStack.stackSize) * 5L / 4), | ||
tStack), | ||
GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wood, 2L)) | ||
.duration(10 * SECONDS).eut(8).addTo(sCutterRecipes); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this have no fluid input? Wasn't this water? Because otherwise the machines could sometimes just do this recipes instead of the one with lubricant
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just ra2ed that part :P
no fluid should generate the 3 water/distilled/lubricant recipes (its the rare case where RA2 is not explicit).
but that begs the question what the lubricant one is for. will remove that one
GT_Values.RA.stdBuilder().itemInputs(GT_Utility.copyAmount(1L, aStack)) | ||
.itemOutputs( | ||
GT_Utility.copyAmount( | ||
GT_Mod.gregtechproxy.mNerfedWoodPlank ? ((long) tStack2.stackSize) | ||
: (((long) tStack2.stackSize) * 5L / 4), | ||
tStack2), | ||
GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wood, 2L)) | ||
.duration(10 * SECONDS).eut(8).addTo(sCutterRecipes); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above. Shouldn't water be an input?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the cleanup
Just a small cleanup with RA2 conversion.