Connector fixes for jigsaw

This commit is contained in:
Daniel Mills 2021-01-09 02:01:57 -05:00
parent 0a08b4b0b9
commit c0df132c93

View File

@ -44,4 +44,9 @@ public class IrisJigsawPieceConnector
@Desc("The direction this connector is facing. If the direction is set to UP, then pieces will place ABOVE the connector.")
@Required
private IrisDirection direction = IrisDirection.UP_POSITIVE_Y;
public String toString()
{
return direction.getFace().name() + "@(" + position.getX() + "," + position.getY() + "," + position.getZ() + ")";
}
}