This commit is contained in:
modmuss50 2017-07-10 18:49:04 +01:00
parent 0ebd138509
commit 2f221ed8c8
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -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());
}
}