so i have
I can make a call to the ModInit on creation but should it no be making the call when the item inits?
var itemInfo = ItemManager.FindItemDefinition("hat.cap");
var crownMod = itemInfo.GetOrAddComponent<theCrown>();
Item crown = ItemManager.Create(itemInfo, 1, 839691853);
public class theCrown : ItemMod
{
public Item crown;
public string name = "The Crown2";
public override void ModInit()
{
instance.Puts("Init");
}
}I can make a call to the ModInit on creation but should it no be making the call when the item inits?