Skip to content

Commit

Permalink
Apply modulating delay to Hopperhock picking up recipe outputs
Browse files Browse the repository at this point in the history
(closes #4753)
  • Loading branch information
TheRealWormbo committed Nov 2, 2024
1 parent 6c56ce4 commit 547c563
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void tickFlower() {

// Flat 5 tick delay for newly infused items
if (flags.spawnedByInWorldRecipe()) {
return flags.timeCounter >= 5;
return flags.timeCounter >= 5 + getModulatedDelay();
}
return DelayHelper.canInteractWith(this, item);
};
Expand Down

0 comments on commit 547c563

Please sign in to comment.