summaryrefslogtreecommitdiff
path: root/src/main/java/lv/enes/mc/eris_alchemy/utils/AxeUtils.java
blob: 22c0bad64f01ce53b389fdaf742a9e391129401c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package lv.enes.mc.eris_alchemy.utils;

import net.minecraft.world.item.AxeItem;
import net.minecraft.world.item.Tier;
import net.minecraft.world.level.block.Block;

import java.util.Map;

/** This extends AxeItem only to read the STRIPPABLES variable :3 */
public final class AxeUtils extends AxeItem {
	public static Map<Block, Block> getStrippables() {
		return STRIPPABLES;
	}

	private AxeUtils(Tier material, float attackDamage, float attackSpeed, Properties settings) {
		super(material, attackDamage, attackSpeed, settings);
	}
}