Fix notifyGatherers not referencing a method with appropriate checks in place

This commit is contained in:
attackeight 2024-08-03 16:11:54 -04:00
parent e52b59097e
commit a8cf3e29a4

View File

@ -65,7 +65,7 @@ public class DisplayLinkBlock extends WrenchableDirectionalBlock implements IBE<
}
public static void notifyGatherers(LevelAccessor level, BlockPos pos) {
forEachAttachedGatherer(level, pos, DisplayLinkBlockEntity::updateGatheredData);
forEachAttachedGatherer(level, pos, DisplayLinkBlockEntity::tickSource);
}
@SuppressWarnings("unchecked")