Fix excessive water mill frame.
This commit is contained in:
parent
5cceaeab47
commit
ac69d914f7
2 changed files with 2 additions and 4 deletions
|
@ -35,7 +35,6 @@ import net.minecraft.tag.Tag;
|
|||
import net.minecraft.util.collection.DefaultedList;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
import reborncore.common.powerSystem.PowerSystem;
|
||||
import reborncore.common.powerSystem.RcEnergyItem;
|
||||
import reborncore.common.powerSystem.RcEnergyTier;
|
||||
import reborncore.common.util.ItemUtils;
|
||||
|
@ -95,7 +94,7 @@ public class DrillItem extends PickaxeItem implements RcEnergyItem, DynamicAttri
|
|||
if (Items.DIAMOND_SHOVEL.getMiningSpeedMultiplier(new ItemStack(Items.DIAMOND_SHOVEL), blockIn) > 1.0f) {
|
||||
return true;
|
||||
}
|
||||
return Items.DIAMOND_PICKAXE.getMiningSpeedMultiplier(new ItemStack(Items.DIAMOND_SHOVEL), blockIn) > 1.0f;
|
||||
return Items.DIAMOND_PICKAXE.getMiningSpeedMultiplier(new ItemStack(Items.DIAMOND_PICKAXE), blockIn) > 1.0f;
|
||||
}
|
||||
|
||||
// MiningToolItem
|
||||
|
|
|
@ -5,8 +5,7 @@
|
|||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4
|
||||
3
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue