-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
/**
* 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.
*/
public boolean hasBlock(CoordTriplet blockCoord) {
return connectedParts.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)
Metadata
Metadata
Assignees
Labels
No labels