We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tested with:
public class TestBlock extends Block implements BlockExtensions { public static BlockBehaviour.Properties PROPERTIES = FabricBlockSettings.of(Material.GRASS).sound(SoundType.GRAVEL).strength(1f, 10f); public TestBlock() { super(PROPERTIES); } @Override public boolean canSustainPlant(BlockState state, BlockGetter world, BlockPos pos, Direction facing, IPlantable plantable) { return true; } }
And also tried the same with BlockStateExtensions, neither worked; Doesn't seem to be anything at all.
The text was updated successfully, but these errors were encountered:
This probably needs to be moved to a separate interface as leaving it in block would probably compromise mod compatibility
Sorry, something went wrong.
No branches or pull requests
Tested with:
And also tried the same with BlockStateExtensions, neither worked; Doesn't seem to be anything at all.
The text was updated successfully, but these errors were encountered: