mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-24 09:04:49 +00:00
remap
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
/*
|
||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
||||
* Send enquiries to dratcliffe@gmail.com
|
||||
*/
|
||||
|
||||
package dan200.computercraft.shared.turtle.upgrades;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.util.Identifier;
|
||||
|
||||
public class TurtleAxe extends TurtleTool
|
||||
{
|
||||
public TurtleAxe( Identifier id, String adjective, Item item )
|
||||
{
|
||||
super( id, adjective, item );
|
||||
}
|
||||
|
||||
public TurtleAxe( Identifier id, Item item )
|
||||
{
|
||||
super( id, item );
|
||||
}
|
||||
|
||||
@Override
|
||||
protected float getDamageMultiplier()
|
||||
{
|
||||
return 6.0f;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user