Fix #992
This commit is contained in:
parent
0ebd138509
commit
2f221ed8c8
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public class BlockBreakHandler {
|
|||
|
||||
@SubscribeEvent
|
||||
public void onBlockHarvest(BlockEvent.HarvestDropsEvent event) {
|
||||
if (rubyGarnetDrops && OreDictUtils.isOre(event.getState(), "oreRuby")) {
|
||||
if (!event.isSilkTouching() && rubyGarnetDrops && OreDictUtils.isOre(event.getState(), "oreRuby")) {
|
||||
event.getDrops().add(ItemGems.getGemByName("red_garnet").copy());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue