Fix fusion reactor not always working.
This commit is contained in:
parent
0cf6d7e888
commit
46e2c143bc
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ public class FusionControlComputerBlockEntity extends PowerAcceptorBlockEntity
|
|||
*/
|
||||
private void updateCurrentRecipe() {
|
||||
for (RebornRecipe recipe : ModRecipes.FUSION_REACTOR.getRecipes(getWorld())) {
|
||||
if (recipe.canCraft(this) && validateRecipe((FusionReactorRecipe) recipe)) {
|
||||
if (validateRecipe((FusionReactorRecipe) recipe)) {
|
||||
currentRecipe = (FusionReactorRecipe) recipe;
|
||||
crafingTickTime = 0;
|
||||
finalTickTime = currentRecipe.getTime();
|
||||
|
|
Loading…
Add table
Reference in a new issue