ConstructionWand/src/main/java/thetadev/constructionwand/items/wand/ItemWandInfinity.java
2021-08-02 23:48:18 +02:00

9 lines
232 B
Java

package thetadev.constructionwand.items.wand;
public class ItemWandInfinity extends ItemWand
{
public ItemWandInfinity(String name, Properties properties) {
super(name, properties.stacksTo(1).fireResistant());
}
}