ConstructionWand/src/main/java/thetadev/constructionwand/items/wand/ItemWandInfinity.java
Mrbysco fc20293906 Port to 1.18.2
Convert item registering to DeferredRegister as vanilla freezes the registry which instantiating them outside of the RegistryEvent or DeferredRegister will result in an error.
2022-03-15 03:15:54 +01:00

9 lines
213 B
Java

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