Ritual work + Begin move of NetworkHelper (static) to SoulNetwork (instance)
This commit is contained in:
parent
afad5b0fd0
commit
46742a73d1
7 changed files with 183 additions and 5 deletions
|
@ -5,6 +5,7 @@ import WayofTime.alchemicalWizardry.ConfigHandler;
|
|||
import WayofTime.alchemicalWizardry.api.AlchemicalWizardryAPI;
|
||||
import WayofTime.alchemicalWizardry.api.orb.BloodOrb;
|
||||
import WayofTime.alchemicalWizardry.api.registry.OrbRegistry;
|
||||
import WayofTime.alchemicalWizardry.item.ItemActivationCrystal;
|
||||
import WayofTime.alchemicalWizardry.item.ItemBloodOrb;
|
||||
import WayofTime.alchemicalWizardry.item.ItemBucketEssence;
|
||||
import WayofTime.alchemicalWizardry.item.sigil.ItemSigilDivination;
|
||||
|
@ -24,6 +25,8 @@ public class ModItems {
|
|||
|
||||
public static Item bucketEssence;
|
||||
|
||||
public static Item activationCrystal;
|
||||
|
||||
public static Item sigilDivination;
|
||||
|
||||
public static void init() {
|
||||
|
@ -44,6 +47,8 @@ public class ModItems {
|
|||
|
||||
bucketEssence = registerItem(new ItemBucketEssence());
|
||||
|
||||
activationCrystal = registerItem(new ItemActivationCrystal());
|
||||
|
||||
sigilDivination = registerItem(new ItemSigilDivination());
|
||||
}
|
||||
|
||||
|
@ -60,6 +65,9 @@ public class ModItems {
|
|||
|
||||
renderHelper.itemRender(bucketEssence);
|
||||
|
||||
renderHelper.itemRender(activationCrystal, 0);
|
||||
renderHelper.itemRender(activationCrystal, 1);
|
||||
|
||||
renderHelper.itemRender(sigilDivination);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue