Another terrain block small fix

This commit is contained in:
paulevsGitch 2021-07-30 20:45:56 +03:00
parent 6a1ab89e39
commit b5ebabd824

View file

@ -88,7 +88,7 @@ public class BaseTerrainBlock extends BaseBlock {
if (tool != null && EnchantmentHelper.getItemEnchantmentLevel(Enchantments.SILK_TOUCH, tool) > 0) { if (tool != null && EnchantmentHelper.getItemEnchantmentLevel(Enchantments.SILK_TOUCH, tool) > 0) {
return Collections.singletonList(new ItemStack(this)); return Collections.singletonList(new ItemStack(this));
} }
return Collections.singletonList(new ItemStack(Blocks.END_STONE)); return Collections.singletonList(new ItemStack(getBaseBlock()));
} }
@Override @Override