Filalux textures & models

This commit is contained in:
paulevsGitch 2021-03-14 22:07:29 +03:00
parent 292c169007
commit 5b3c889263
15 changed files with 281 additions and 1 deletions

View file

@ -64,7 +64,7 @@ public class FurBlock extends AttachedBlock implements IRenderTypeable {
if (tool != null && tool.getItem().isIn(FabricToolTags.SHEARS) || EnchantmentHelper.getLevel(Enchantments.SILK_TOUCH, tool) > 0) {
return Lists.newArrayList(new ItemStack(this));
}
else if (MHelper.RANDOM.nextInt(dropChance) == 0) {
else if (dropChance < 1 || MHelper.RANDOM.nextInt(dropChance) == 0) {
return Lists.newArrayList(new ItemStack(drop));
}
else {