Skip to content

Commit

Permalink
Fix static and private
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Estoll committed Jul 10, 2024
1 parent 9abcbe8 commit 8633982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public final void setFloating(boolean floating) {
this.isFloating = floating;
}

private boolean isOnSpecialSoil() {
public boolean isOnSpecialSoil() {
if (isFloating()) {
return false;
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void tickFlower() {
}
}

private static boolean shouldTick(long gameTime) {
private boolean shouldTick(long gameTime) {
return (gameTime % SPEED == 0 || (gameTime % (OVERGROWN_SPEED) == 0 && overgrowthBoost)) && getLevel().hasNeighborSignal(getBlockPos());
}

Expand Down

0 comments on commit 8633982

Please sign in to comment.