From 17bbea0e74776463b324d1abf27ec713180fdf87 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Fri, 17 Jan 2014 16:54:58 -0500 Subject: [PATCH] . --- BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java | 2 -- .../WayofTime/alchemicalWizardry/{common => }/ModBlocks.java | 4 ++-- .../WayofTime/alchemicalWizardry/{common => }/ModItems.java | 3 +-- BM_src/WayofTime/alchemicalWizardry/client/ClientProxy.java | 2 +- .../common/AlchemicalWizardryFuelHandler.java | 1 + .../alchemicalWizardry/common/LifeBucketHandler.java | 1 + .../alchemicalWizardry/common/ModLivingDropsEvent.java | 1 + .../common/alchemy/AlchemicalPotionCreationHandler.java | 2 +- .../alchemicalWizardry/common/block/ArmourForge.java | 2 +- .../WayofTime/alchemicalWizardry/common/block/BlockAltar.java | 2 +- .../WayofTime/alchemicalWizardry/common/block/BloodRune.java | 2 +- .../common/bloodAltarUpgrade/UpgradedAltars.java | 2 +- .../alchemicalWizardry/common/entity/mob/EntityBileDemon.java | 2 +- .../common/entity/mob/EntityBoulderFist.java | 2 +- .../alchemicalWizardry/common/entity/mob/EntityDemon.java | 2 +- .../alchemicalWizardry/common/entity/mob/EntityElemental.java | 2 +- .../common/entity/mob/EntityFallenAngel.java | 2 +- .../alchemicalWizardry/common/entity/mob/EntityIceDemon.java | 2 +- .../common/entity/mob/EntityLowerGuardian.java | 2 +- .../alchemicalWizardry/common/entity/mob/EntityShade.java | 2 +- .../common/entity/mob/EntitySmallEarthGolem.java | 2 +- .../common/entity/mob/EntityWingedFireDemon.java | 2 +- .../common/entity/projectile/EntityBloodLightProjectile.java | 2 +- .../alchemicalWizardry/common/items/AWBaseItems.java | 2 +- .../WayofTime/alchemicalWizardry/common/items/BloodShard.java | 2 +- .../alchemicalWizardry/common/items/BoundArmour.java | 2 +- .../alchemicalWizardry/common/items/ItemDiabloKey.java | 2 +- .../alchemicalWizardry/common/items/ItemRitualDiviner.java | 4 ++-- .../alchemicalWizardry/common/items/ItemSanguineArmour.java | 2 +- .../common/items/potion/AlchemyReagent.java | 2 +- .../common/items/sigil/ItemBloodLightSigil.java | 2 +- .../alchemicalWizardry/common/items/sigil/SigilOfHolding.java | 2 +- .../common/items/sigil/SigilOfTheBridge.java | 2 +- .../common/rituals/RitualEffectBiomeChanger.java | 2 +- .../common/rituals/RitualEffectCrushing.java | 2 +- .../common/rituals/RitualEffectSoulBound.java | 2 +- .../common/rituals/RitualEffectUnbinding.java | 4 ++-- .../alchemicalWizardry/common/tileEntity/TEAltar.java | 2 ++ .../alchemicalWizardry/common/tileEntity/TEWritingTable.java | 1 + 39 files changed, 42 insertions(+), 39 deletions(-) rename BM_src/WayofTime/alchemicalWizardry/{common => }/ModBlocks.java (97%) rename BM_src/WayofTime/alchemicalWizardry/{common => }/ModItems.java (99%) diff --git a/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java index b847ae30..bb4711f1 100644 --- a/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java +++ b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java @@ -27,8 +27,6 @@ import WayofTime.alchemicalWizardry.common.BloodMagicConfiguration; import WayofTime.alchemicalWizardry.common.CommonProxy; import WayofTime.alchemicalWizardry.common.EntityAirElemental; import WayofTime.alchemicalWizardry.common.LifeBucketHandler; -import WayofTime.alchemicalWizardry.common.ModBlocks; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.ModLivingDropsEvent; import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.PotionBoost; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/ModBlocks.java b/BM_src/WayofTime/alchemicalWizardry/ModBlocks.java similarity index 97% rename from BM_src/WayofTime/alchemicalWizardry/common/ModBlocks.java rename to BM_src/WayofTime/alchemicalWizardry/ModBlocks.java index 6fb409f5..0be56f76 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/ModBlocks.java +++ b/BM_src/WayofTime/alchemicalWizardry/ModBlocks.java @@ -1,6 +1,6 @@ -package WayofTime.alchemicalWizardry.common; +package WayofTime.alchemicalWizardry; -import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.common.LifeEssence; import WayofTime.alchemicalWizardry.common.block.*; import net.minecraft.block.Block; import net.minecraft.block.material.Material; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/ModItems.java b/BM_src/WayofTime/alchemicalWizardry/ModItems.java similarity index 99% rename from BM_src/WayofTime/alchemicalWizardry/common/ModItems.java rename to BM_src/WayofTime/alchemicalWizardry/ModItems.java index e9bcc86d..1adf0155 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/ModItems.java +++ b/BM_src/WayofTime/alchemicalWizardry/ModItems.java @@ -1,6 +1,5 @@ -package WayofTime.alchemicalWizardry.common; +package WayofTime.alchemicalWizardry; -import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.items.*; import WayofTime.alchemicalWizardry.common.items.potion.*; import WayofTime.alchemicalWizardry.common.items.sigil.*; diff --git a/BM_src/WayofTime/alchemicalWizardry/client/ClientProxy.java b/BM_src/WayofTime/alchemicalWizardry/client/ClientProxy.java index e573e4f4..c5ccd93b 100644 --- a/BM_src/WayofTime/alchemicalWizardry/client/ClientProxy.java +++ b/BM_src/WayofTime/alchemicalWizardry/client/ClientProxy.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.client; +import WayofTime.alchemicalWizardry.ModBlocks; import WayofTime.alchemicalWizardry.common.CommonProxy; import WayofTime.alchemicalWizardry.common.EntityAirElemental; -import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.entity.mob.*; import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaMainProjectile; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryFuelHandler.java b/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryFuelHandler.java index 53ce8aea..68f073b4 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryFuelHandler.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryFuelHandler.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.items.LavaCrystal; import cpw.mods.fml.common.IFuelHandler; import net.minecraft.entity.player.EntityPlayer; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java b/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java index 2093f185..fd2734b4 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java @@ -1,6 +1,7 @@ package WayofTime.alchemicalWizardry.common; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModBlocks; import net.minecraft.item.ItemStack; import net.minecraft.util.MovingObjectPosition; import net.minecraft.world.World; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/ModLivingDropsEvent.java b/BM_src/WayofTime/alchemicalWizardry/common/ModLivingDropsEvent.java index 5e610452..d10e7354 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/ModLivingDropsEvent.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/ModLivingDropsEvent.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.ModItems; import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java b/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java index b6b15e2d..36fb6c2f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.alchemy; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModItems; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.potion.Potion; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java b/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java index f08b76f7..71e32ca2 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java @@ -1,9 +1,9 @@ package WayofTime.alchemicalWizardry.common.block; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.ArmourComponent; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.items.BoundArmour; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import WayofTime.alchemicalWizardry.common.tileEntity.TESocket; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java index f002e796..66d6131d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.block; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.items.EnergyBattery; import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java index 5b6c6401..1279b7ab 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.block; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModBlocks; +import WayofTime.alchemicalWizardry.ModBlocks; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.Block; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/bloodAltarUpgrade/UpgradedAltars.java b/BM_src/WayofTime/alchemicalWizardry/common/bloodAltarUpgrade/UpgradedAltars.java index a0f4981e..5ab1a937 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/bloodAltarUpgrade/UpgradedAltars.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/bloodAltarUpgrade/UpgradedAltars.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModBlocks; +import WayofTime.alchemicalWizardry.ModBlocks; import WayofTime.alchemicalWizardry.common.block.BloodRune; import net.minecraft.block.Block; import net.minecraft.world.World; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java index 46deae0d..fc39029f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModItems; import net.minecraft.block.BlockColored; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityAgeable; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java index 6bd26718..7579772f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; import net.minecraft.block.BlockColored; import net.minecraft.entity.Entity; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityDemon.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityDemon.java index 84dc7add..e36f736d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityDemon.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityDemon.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.entity.mob; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.IDemon; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.items.DemonPlacer; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityAgeable; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java index 2fad5176..caa3f0c4 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModItems; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.Block; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java index fc372ca3..ea33d5b3 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; import cpw.mods.fml.common.network.Player; import net.minecraft.block.BlockColored; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java index 894ace8d..7894486c 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.IceProjectile; import net.minecraft.block.Block; import net.minecraft.block.BlockColored; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java index c1f8c356..8a68fb9a 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; -import WayofTime.alchemicalWizardry.common.ModItems; import net.minecraft.block.BlockColored; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityAgeable; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java index ea5dead9..1154d467 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; import net.minecraft.block.BlockColored; import net.minecraft.entity.Entity; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java index 647687a7..59fbbf34 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.MudProjectile; import cpw.mods.fml.common.network.Player; import net.minecraft.block.BlockColored; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java index 9c7b816a..1ce71085 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.entity.mob; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.FireProjectile; import cpw.mods.fml.common.network.Player; import net.minecraft.block.BlockColored; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/EntityBloodLightProjectile.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/EntityBloodLightProjectile.java index 0c5d760b..bf3d50b6 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/EntityBloodLightProjectile.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/EntityBloodLightProjectile.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.projectile; -import WayofTime.alchemicalWizardry.common.ModBlocks; +import WayofTime.alchemicalWizardry.ModBlocks; import net.minecraft.block.Block; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java b/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java index e75fc4da..82c3dbef 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.items; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModItems; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java index df51c98c..fda8720a 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.items; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; -import WayofTime.alchemicalWizardry.common.ModItems; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.renderer.texture.IconRegister; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundArmour.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundArmour.java index f546cf8c..43e88c6d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundArmour.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundArmour.java @@ -1,9 +1,9 @@ package WayofTime.alchemicalWizardry.common.items; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.IBindable; -import WayofTime.alchemicalWizardry.common.ModItems; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.renderer.texture.IconRegister; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemDiabloKey.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemDiabloKey.java index 3f65c34d..69b02f2a 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemDiabloKey.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemDiabloKey.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.items; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.IBindable; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import cpw.mods.fml.common.network.PacketDispatcher; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java index 7e5df695..449a0900 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.items; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModBlocks; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModBlocks; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.rituals.RitualComponent; import WayofTime.alchemicalWizardry.common.rituals.Rituals; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java index 3b01db4f..d8c77bbb 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.items; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; -import WayofTime.alchemicalWizardry.common.ModItems; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.renderer.texture.IconRegister; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyReagent.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyReagent.java index 55d82fbb..1c8ec262 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyReagent.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyReagent.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.items.potion; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java index d8676214..bf7db13f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.items.sigil; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModBlocks; +import WayofTime.alchemicalWizardry.ModBlocks; import WayofTime.alchemicalWizardry.common.entity.projectile.EntityBloodLightProjectile; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHolding.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHolding.java index 4ac72cdc..643361bf 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHolding.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHolding.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.items.sigil; import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.ModItems; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java index 7899cf48..79ca9502 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.items.sigil; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModBlocks; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; -import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectBiomeChanger.java b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectBiomeChanger.java index da774558..c3697d1e 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectBiomeChanger.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectBiomeChanger.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.rituals; +import WayofTime.alchemicalWizardry.ModBlocks; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; -import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth; import net.minecraft.block.Block; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectCrushing.java b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectCrushing.java index 92f8d7d2..ec6948e2 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectCrushing.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectCrushing.java @@ -1,7 +1,7 @@ package WayofTime.alchemicalWizardry.common.rituals; +import WayofTime.alchemicalWizardry.ModBlocks; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; -import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; import net.minecraft.block.Block; import net.minecraft.entity.item.EntityItem; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java index 7b091319..df03bf8f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.rituals; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; import cpw.mods.fml.common.network.PacketDispatcher; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectUnbinding.java b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectUnbinding.java index 86d78825..ac7a60af 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectUnbinding.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectUnbinding.java @@ -1,8 +1,8 @@ package WayofTime.alchemicalWizardry.common.rituals; +import WayofTime.alchemicalWizardry.ModBlocks; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; -import WayofTime.alchemicalWizardry.common.ModBlocks; -import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.items.BoundArmour; import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java index d4cd6d3a..f4332853 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java @@ -1,6 +1,8 @@ package WayofTime.alchemicalWizardry.common.tileEntity; import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.ModBlocks; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.*; import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.AltarUpgradeComponent; import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEWritingTable.java b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEWritingTable.java index a2c3cb6b..2a2a1429 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEWritingTable.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEWritingTable.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common.tileEntity; +import WayofTime.alchemicalWizardry.ModItems; import WayofTime.alchemicalWizardry.common.*; import WayofTime.alchemicalWizardry.common.alchemy.AlchemicalPotionCreationHandler; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry;