You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Check if a block is being tracked by this machine. * @param blockCoord Coordinate to check. * @return True if the tile entity at blockCoord is being tracked by this machine, false otherwise. */publicbooleanhasBlock(CoordTripletblockCoord) {
returnconnectedParts.contains(blockCoord);
}
connectedParts is a Set<IMultiblockPart> but this method is checking if it contains a CoordTriplet.
I don't think it's used in BigReactors either, so maybe it should be removed.
(I'm toying with making Forestry Multiblocks use BeefCore)
The text was updated successfully, but these errors were encountered:
https://github.com/erogenousbeef/BeefCore/blob/master/src/main/java/erogenousbeef/core/multiblock/MultiblockControllerBase.java#L95-L102
connectedParts
is aSet<IMultiblockPart>
but this method is checking if it contains aCoordTriplet
.I don't think it's used in BigReactors either, so maybe it should be removed.
(I'm toying with making Forestry Multiblocks use BeefCore)
The text was updated successfully, but these errors were encountered: