Skip to content

Commit

Permalink
feat: buff strength of FleshyBone material (increase destroy time f…
Browse files Browse the repository at this point in the history
…rom 3 to 4 and explosion resistance from 3 to 6)
  • Loading branch information
Elenterius committed Jan 10, 2024
1 parent cac88ef commit f4b0580
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public static BlockBehaviour.Properties createToughFleshProperties() {
}

public static BlockBehaviour.Properties createFleshyBoneProperties() {
return BlockBehaviour.Properties.of(ModBlockMaterials.FLESH_MATERIAL).strength(3f, 3f).sound(SoundType.BONE_BLOCK).isValidSpawn(ModBlocks::isValidFleshkinSpawn);
return BlockBehaviour.Properties.of(ModBlockMaterials.FLESH_MATERIAL).strength(4f, 6f).sound(SoundType.BONE_BLOCK).isValidSpawn(ModBlocks::isValidFleshkinSpawn);
}

public static boolean isValidFleshkinSpawn(BlockState state, BlockGetter level, BlockPos pos, EntityType<?> entityType) {
Expand Down

0 comments on commit f4b0580

Please sign in to comment.