Implicit super constructor ItemTool() is undefined for default constructor. Must define an explicit constructor
This error pops up in this code:
public class ItemStrangeTool extends ItemTool {
protected ItemStrangeTool(float attackDamageIn, float attackSpeedIn, ToolMaterial materialIn,
Set<Block> effectiveBlocksIn) {
super(attackDamageIn, attackSpeedIn, materialIn, effectiveBlocksIn);
}
}
How do I fix this?