mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-08-06 02:45:26 +02:00
9 lines
232 B
Java
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());
|
|
}
|
|
}
|