Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,12 @@ public static void tickPot(Level level, BlockPos pos, BlockState state, BlockEnt
return;
}

// Disable pot operations when given a redstone signal.
if (pot.getLevel().hasNeighborSignal(pos)) {

return;
}

pot.getInventory().update();

final Soil soil = pot.getSoil();
Expand Down