ConstructionWand/src/main/java/thetadev/constructionwand/items/wand/ItemWandInfinity.java
2021-03-14 21:48:58 +01:00

9 lines
220 B
Java

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