ConstructionWand/src/main/java/thetadev/constructionwand/items/wand/ItemWandInfinity.java
Theta-Dev ebf3ae9518 Finally added DESTRUCTION ACTION
Config options for destruction core + upgradeable
Better block limit system
2021-03-07 23:43:31 +01:00

9 lines
233 B
Java

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