Filalux textures & models
This commit is contained in:
parent
292c169007
commit
5b3c889263
15 changed files with 281 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue