Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
made crop harvester not blow up in rain
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 6, 2023
1 parent c8afc2a commit da7924f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ public TileEntityCropHarvester(Machine<?> type, BlockPos pos, BlockState state)
positions.add(down.offset(0, 0, 1));
}

@Override
protected boolean allowExplosionsInRain() {
return false;
}

@Override
public void serverTick(Level level, BlockPos pos, BlockState state) {
super.serverTick(level, pos, state);
Expand Down

0 comments on commit da7924f

Please sign in to comment.