diff --git a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardry.java b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java similarity index 95% rename from BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardry.java rename to BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java index a896db10..b847ae30 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardry.java +++ b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java @@ -1,38 +1,9 @@ -package WayofTime.alchemicalWizardry.common; +package WayofTime.alchemicalWizardry; + +import java.io.File; +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; -import WayofTime.alchemicalWizardry.common.alchemy.AlchemicalPotionCreationHandler; -import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; -import WayofTime.alchemicalWizardry.common.block.ArmourForge; -import WayofTime.alchemicalWizardry.common.block.LifeEssenceBlock; -import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars; -import WayofTime.alchemicalWizardry.common.entity.mob.*; -import WayofTime.alchemicalWizardry.common.items.ItemBloodRuneBlock; -import WayofTime.alchemicalWizardry.common.items.ItemRitualDiviner; -import WayofTime.alchemicalWizardry.common.items.ItemSanguineArmour; -import WayofTime.alchemicalWizardry.common.items.LifeBucket; -import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding; -import WayofTime.alchemicalWizardry.common.rituals.Rituals; -import WayofTime.alchemicalWizardry.common.spell.simple.*; -import WayofTime.alchemicalWizardry.common.summoning.SummoningHelper; -import WayofTime.alchemicalWizardry.common.summoning.SummoningRegistry; -import WayofTime.alchemicalWizardry.common.summoning.meteor.MeteorRegistry; -import WayofTime.alchemicalWizardry.common.tileEntity.*; -import WayofTime.alchemicalWizardry.common.tileEntity.gui.GuiHandler; -import cpw.mods.fml.common.Loader; -import cpw.mods.fml.common.Mod; -import cpw.mods.fml.common.Mod.EventHandler; -import cpw.mods.fml.common.Mod.Instance; -import cpw.mods.fml.common.SidedProxy; -import cpw.mods.fml.common.event.FMLInitializationEvent; -import cpw.mods.fml.common.event.FMLPostInitializationEvent; -import cpw.mods.fml.common.event.FMLPreInitializationEvent; -import cpw.mods.fml.common.network.NetworkMod; -import cpw.mods.fml.common.network.NetworkRegistry; -import cpw.mods.fml.common.registry.EntityRegistry; -import cpw.mods.fml.common.registry.GameRegistry; -import cpw.mods.fml.common.registry.LanguageRegistry; -import cpw.mods.fml.common.registry.TickRegistry; -import cpw.mods.fml.relauncher.Side; import net.minecraft.block.Block; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.EnumArmorMaterial; @@ -49,10 +20,85 @@ import net.minecraftforge.fluids.FluidContainerRegistry; import net.minecraftforge.fluids.FluidRegistry; import net.minecraftforge.oredict.OreDictionary; import thaumcraft.api.ItemApi; - -import java.io.File; -import java.lang.reflect.Field; -import java.lang.reflect.Modifier; +import WayofTime.alchemicalWizardry.common.AlchemicalWizardryEventHooks; +import WayofTime.alchemicalWizardry.common.AlchemicalWizardryFuelHandler; +import WayofTime.alchemicalWizardry.common.AlchemicalWizardryTickHandler; +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; +import WayofTime.alchemicalWizardry.common.PotionDrowning; +import WayofTime.alchemicalWizardry.common.PotionFlight; +import WayofTime.alchemicalWizardry.common.PotionInhibit; +import WayofTime.alchemicalWizardry.common.PotionProjectileProtect; +import WayofTime.alchemicalWizardry.common.PotionReciprocation; +import WayofTime.alchemicalWizardry.common.alchemy.AlchemicalPotionCreationHandler; +import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; +import WayofTime.alchemicalWizardry.common.block.ArmourForge; +import WayofTime.alchemicalWizardry.common.block.LifeEssenceBlock; +import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityBileDemon; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityBoulderFist; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityEarthElemental; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityFallenAngel; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityFireElemental; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityHolyElemental; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityIceDemon; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityLowerGuardian; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityShade; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityShadeElemental; +import WayofTime.alchemicalWizardry.common.entity.mob.EntitySmallEarthGolem; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityWaterElemental; +import WayofTime.alchemicalWizardry.common.entity.mob.EntityWingedFireDemon; +import WayofTime.alchemicalWizardry.common.items.ItemBloodRuneBlock; +import WayofTime.alchemicalWizardry.common.items.ItemRitualDiviner; +import WayofTime.alchemicalWizardry.common.items.ItemSanguineArmour; +import WayofTime.alchemicalWizardry.common.items.LifeBucket; +import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding; +import WayofTime.alchemicalWizardry.common.rituals.Rituals; +import WayofTime.alchemicalWizardry.common.spell.simple.HomSpellRegistry; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellEarthBender; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellExplosions; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellFireBurst; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellFrozenWater; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellHolyBlast; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellLightningBolt; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellTeleport; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellWateryGrave; +import WayofTime.alchemicalWizardry.common.spell.simple.SpellWindGust; +import WayofTime.alchemicalWizardry.common.summoning.SummoningHelper; +import WayofTime.alchemicalWizardry.common.summoning.SummoningRegistry; +import WayofTime.alchemicalWizardry.common.summoning.meteor.MeteorRegistry; +import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; +import WayofTime.alchemicalWizardry.common.tileEntity.TEConduit; +import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart; +import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; +import WayofTime.alchemicalWizardry.common.tileEntity.TEPedestal; +import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth; +import WayofTime.alchemicalWizardry.common.tileEntity.TESocket; +import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer; +import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable; +import WayofTime.alchemicalWizardry.common.tileEntity.gui.GuiHandler; +import cpw.mods.fml.common.Loader; +import cpw.mods.fml.common.Mod; +import cpw.mods.fml.common.Mod.EventHandler; +import cpw.mods.fml.common.Mod.Instance; +import cpw.mods.fml.common.SidedProxy; +import cpw.mods.fml.common.event.FMLInitializationEvent; +import cpw.mods.fml.common.event.FMLPostInitializationEvent; +import cpw.mods.fml.common.event.FMLPreInitializationEvent; +import cpw.mods.fml.common.network.NetworkMod; +import cpw.mods.fml.common.network.NetworkRegistry; +import cpw.mods.fml.common.registry.EntityRegistry; +import cpw.mods.fml.common.registry.GameRegistry; +import cpw.mods.fml.common.registry.LanguageRegistry; +import cpw.mods.fml.common.registry.TickRegistry; +import cpw.mods.fml.relauncher.Side; @Mod(modid = "AWWayofTime", name = "AlchemicalWizardry", version = "v0.7.2") @NetworkMod(clientSideRequired = true, serverSideRequired = false, channels = {"BloodAltar", "particle", "SetLifeEssence", "GetLifeEssence", "Ritual", "GetAltarEssence", "TESocket", "TEWritingTable", "CustomParticle", "SetPlayerVel", "SetPlayerPos", "TEPedestal", "TEPlinth", "TETeleposer", "InfiniteLPPath", "TEOrientor"}, packetHandler = PacketHandler.class) diff --git a/BM_src/WayofTime/alchemicalWizardry/TestingBlock.java b/BM_src/WayofTime/alchemicalWizardry/TestingBlock.java deleted file mode 100644 index 9f9cd4bd..00000000 --- a/BM_src/WayofTime/alchemicalWizardry/TestingBlock.java +++ /dev/null @@ -1,22 +0,0 @@ -package WayofTime.alchemicalWizardry; - -import cpw.mods.fml.relauncher.Side; -import cpw.mods.fml.relauncher.SideOnly; -import net.minecraft.block.Block; -import net.minecraft.block.material.Material; -import net.minecraft.client.renderer.texture.IconRegister; - -public class TestingBlock extends Block -{ - public TestingBlock(int id, Material material) - { - super(id, material); - } - - @Override - @SideOnly(Side.CLIENT) - public void registerIcons(IconRegister iconRegister) - { - this.blockIcon = iconRegister.registerIcon("AlchemicalWizardry:Testing"); - } -} diff --git a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java b/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java index e0d32710..b76a4824 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import cpw.mods.fml.common.ObfuscationReflectionHelper; import cpw.mods.fml.relauncher.ReflectionHelper; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/BloodMagicConfiguration.java b/BM_src/WayofTime/alchemicalWizardry/common/BloodMagicConfiguration.java index c8ccafe1..ed66ab72 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/BloodMagicConfiguration.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/BloodMagicConfiguration.java @@ -1,9 +1,9 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.summoning.meteor.MeteorParadigm; import cpw.mods.fml.common.FMLLog; import net.minecraftforge.common.Configuration; -import totemic_commons.pokefenn.lib.Reference; import java.io.File; import java.util.logging.Level; @@ -174,7 +174,7 @@ public class BloodMagicConfiguration } catch (Exception e) { - FMLLog.log(Level.SEVERE, e, Reference.MOD_NAME + " has had a problem loading its configuration, go ask on the forums :p"); + FMLLog.log(Level.SEVERE, e, "Blood Magic" + " has had a problem loading its configuration, go ask on the forums :p"); } finally { diff --git a/BM_src/WayofTime/alchemicalWizardry/common/CommonProxy.java b/BM_src/WayofTime/alchemicalWizardry/common/CommonProxy.java index d5e61338..262506d6 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/CommonProxy.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/CommonProxy.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.entity.projectile.*; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/EntityAirElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/EntityAirElemental.java index 4f7ddf11..25e11554 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/EntityAirElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/EntityAirElemental.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.entity.mob.EntityElemental; import cpw.mods.fml.common.network.PacketDispatcher; import cpw.mods.fml.common.network.Player; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java b/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java index 898f3237..2093f185 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/LifeBucketHandler.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.item.ItemStack; import net.minecraft.util.MovingObjectPosition; import net.minecraft.world.World; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/ModBlocks.java b/BM_src/WayofTime/alchemicalWizardry/common/ModBlocks.java index 2b4a6e28..6fb409f5 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/ModBlocks.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/ModBlocks.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common; -import WayofTime.alchemicalWizardry.TestingBlock; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.block.*; import net.minecraft.block.Block; import net.minecraft.block.material.Material; @@ -45,7 +45,7 @@ public class ModBlocks public static void init() { - testingBlock = new TestingBlock(AlchemicalWizardry.testingBlockBlockID, Material.ground).setHardness(2.0F).setStepSound(Block.soundStoneFootstep).setCreativeTab(CreativeTabs.tabBlock).setLightValue(1.0F); + //testingBlock = new TestingBlock(AlchemicalWizardry.testingBlockBlockID, Material.ground).setHardness(2.0F).setStepSound(Block.soundStoneFootstep).setCreativeTab(CreativeTabs.tabBlock).setLightValue(1.0F); //lifeEssenceStill = new LifeEssenceStill(lifeEssenceStillBlockID); //lifeEssenceFlowing = new LifeEssenceFlowing(lifeEssenceFlowingBlockID); blockAltar = new BlockAltar(AlchemicalWizardry.blockAltarBlockID); diff --git a/BM_src/WayofTime/alchemicalWizardry/common/ModItems.java b/BM_src/WayofTime/alchemicalWizardry/common/ModItems.java index 44d55d3f..e9bcc86d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/ModItems.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/ModItems.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common; +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/common/PacketHandler.java b/BM_src/WayofTime/alchemicalWizardry/common/PacketHandler.java index 424b7a55..adcce2e2 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PacketHandler.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PacketHandler.java @@ -1,9 +1,12 @@ package WayofTime.alchemicalWizardry.common; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars; import WayofTime.alchemicalWizardry.common.tileEntity.*; + import com.google.common.io.ByteArrayDataInput; import com.google.common.io.ByteStreams; + import cpw.mods.fml.common.network.IPacketHandler; import cpw.mods.fml.common.network.Player; import net.minecraft.entity.player.EntityPlayer; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PotionBoost.java b/BM_src/WayofTime/alchemicalWizardry/common/PotionBoost.java index 2b292123..ce4de5f2 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PotionBoost.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PotionBoost.java @@ -4,7 +4,7 @@ import net.minecraft.potion.Potion; public class PotionBoost extends Potion { - protected PotionBoost(int par1, boolean par2, int par3) + public PotionBoost(int par1, boolean par2, int par3) { super(par1, par2, par3); } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PotionDrowning.java b/BM_src/WayofTime/alchemicalWizardry/common/PotionDrowning.java index 52db4529..26efc6af 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PotionDrowning.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PotionDrowning.java @@ -4,7 +4,7 @@ import net.minecraft.potion.Potion; public class PotionDrowning extends Potion { - protected PotionDrowning(int par1, boolean par2, int par3) + public PotionDrowning(int par1, boolean par2, int par3) { super(par1, par2, par3); } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PotionFlight.java b/BM_src/WayofTime/alchemicalWizardry/common/PotionFlight.java index 551dbe54..9b7940d0 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PotionFlight.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PotionFlight.java @@ -4,7 +4,7 @@ import net.minecraft.potion.Potion; public class PotionFlight extends Potion { - protected PotionFlight(int par1, boolean par2, int par3) + public PotionFlight(int par1, boolean par2, int par3) { super(par1, par2, par3); } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PotionInhibit.java b/BM_src/WayofTime/alchemicalWizardry/common/PotionInhibit.java index e102f7fa..0014b9c3 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PotionInhibit.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PotionInhibit.java @@ -4,7 +4,7 @@ import net.minecraft.potion.Potion; public class PotionInhibit extends Potion { - protected PotionInhibit(int par1, boolean par2, int par3) + public PotionInhibit(int par1, boolean par2, int par3) { super(par1, par2, par3); } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PotionProjectileProtect.java b/BM_src/WayofTime/alchemicalWizardry/common/PotionProjectileProtect.java index 09791e9b..b3c70c6b 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PotionProjectileProtect.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PotionProjectileProtect.java @@ -4,7 +4,7 @@ import net.minecraft.potion.Potion; public class PotionProjectileProtect extends Potion { - protected PotionProjectileProtect(int par1, boolean par2, int par3) + public PotionProjectileProtect(int par1, boolean par2, int par3) { super(par1, par2, par3); } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PotionReciprocation.java b/BM_src/WayofTime/alchemicalWizardry/common/PotionReciprocation.java index afa4df88..2f105b23 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/PotionReciprocation.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/PotionReciprocation.java @@ -4,7 +4,7 @@ import net.minecraft.potion.Potion; public class PotionReciprocation extends Potion { - protected PotionReciprocation(int par1, boolean par2, int par3) + public PotionReciprocation(int par1, boolean par2, int par3) { super(par1, par2, par3); } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java b/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java index 04819814..b6b15e2d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/alchemy/AlchemicalPotionCreationHandler.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.alchemy; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModItems; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java b/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java index 439b4290..f08b76f7 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/ArmourForge.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourComponent; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.ModItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java index 3fed6d34..f002e796 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockAltar.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.items.EnergyBattery; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockConduit.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockConduit.java index 7d2bf5d3..ad9e502d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockConduit.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockConduit.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.tileEntity.TEConduit; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockHomHeart.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockHomHeart.java index e0818179..7a34a5bf 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockHomHeart.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockHomHeart.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.items.BlankSpell; import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockMasterStone.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockMasterStone.java index bb783cf9..8495791e 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockMasterStone.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockMasterStone.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.items.ActivationCrystal; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPedestal.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPedestal.java index d2731973..7fd1ca9f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPedestal.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPedestal.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.tileEntity.TEPedestal; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPlinth.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPlinth.java index 42752893..4c57ed4e 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPlinth.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockPlinth.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSocket.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSocket.java index 67479b7a..3fbdf6ff 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSocket.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSocket.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.tileEntity.TESocket; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockTeleposer.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockTeleposer.java index 2a192a39..bd1a64a3 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockTeleposer.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockTeleposer.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.items.TelepositionFocus; import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockWritingTable.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockWritingTable.java index ce8c0e94..9bdaa8e7 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockWritingTable.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockWritingTable.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java index 486ab09a..5b6c6401 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BloodRune.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModBlocks; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BloodStoneBrick.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BloodStoneBrick.java index 939a5a5e..7e601839 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BloodStoneBrick.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BloodStoneBrick.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/block/EfficiencyRune.java b/BM_src/WayofTime/alchemicalWizardry/common/block/EfficiencyRune.java index f8512011..9d108745 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/EfficiencyRune.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/EfficiencyRune.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/block/EmptySocket.java b/BM_src/WayofTime/alchemicalWizardry/common/block/EmptySocket.java index 17852c3a..28b350e1 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/EmptySocket.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/EmptySocket.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/block/ImperfectRitualStone.java b/BM_src/WayofTime/alchemicalWizardry/common/block/ImperfectRitualStone.java index e394db2f..f45e29f4 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/ImperfectRitualStone.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/ImperfectRitualStone.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.PacketHandler; import cpw.mods.fml.common.network.PacketDispatcher; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/LargeBloodStoneBrick.java b/BM_src/WayofTime/alchemicalWizardry/common/block/LargeBloodStoneBrick.java index 8cacc6a1..3c53977f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/LargeBloodStoneBrick.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/LargeBloodStoneBrick.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/block/LifeEssenceBlock.java b/BM_src/WayofTime/alchemicalWizardry/common/block/LifeEssenceBlock.java index 52550968..a42cca60 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/LifeEssenceBlock.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/LifeEssenceBlock.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.material.Material; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/RitualStone.java b/BM_src/WayofTime/alchemicalWizardry/common/block/RitualStone.java index 19db427a..512087c2 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/RitualStone.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/RitualStone.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.items.ScribeTool; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/RuneOfSacrifice.java b/BM_src/WayofTime/alchemicalWizardry/common/block/RuneOfSacrifice.java index bf20639a..e5898f98 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/RuneOfSacrifice.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/RuneOfSacrifice.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/block/RuneOfSelfSacrifice.java b/BM_src/WayofTime/alchemicalWizardry/common/block/RuneOfSelfSacrifice.java index 03594c8b..29c89216 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/RuneOfSelfSacrifice.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/RuneOfSelfSacrifice.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/block/SpeedRune.java b/BM_src/WayofTime/alchemicalWizardry/common/block/SpeedRune.java index 32193d1a..c46712f9 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/SpeedRune.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/SpeedRune.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.block; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/bloodAltarUpgrade/UpgradedAltars.java b/BM_src/WayofTime/alchemicalWizardry/common/bloodAltarUpgrade/UpgradedAltars.java index 425df00f..a0f4981e 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/bloodAltarUpgrade/UpgradedAltars.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/bloodAltarUpgrade/UpgradedAltars.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.block.BloodRune; import net.minecraft.block.Block; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java index 970e9c87..46deae0d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBileDemon.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModItems; import net.minecraft.block.BlockColored; import net.minecraft.entity.Entity; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java index fac7e624..6bd26718 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityBoulderFist.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityEarthElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityEarthElemental.java index 41624b3a..5d7b5045 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityEarthElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityEarthElemental.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.monster.IMob; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java index 4f3e3411..2fad5176 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityElemental.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModItems; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java index 4a47621c..fc372ca3 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFallenAngel.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFireElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFireElemental.java index ca24366e..a599be7c 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFireElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityFireElemental.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.monster.IMob; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityHolyElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityHolyElemental.java index ece389cb..c4c626a0 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityHolyElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityHolyElemental.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.monster.IMob; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java index 60ae6874..894ace8d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityIceDemon.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.IceProjectile; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java index 35966a8e..c1f8c356 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityLowerGuardian.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.ModItems; import net.minecraft.block.BlockColored; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java index 4e94fa08..ea5dead9 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShade.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShadeElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShadeElemental.java index ce74fedf..004fcce4 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShadeElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityShadeElemental.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.monster.IMob; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java index 9dd6b538..647687a7 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntitySmallEarthGolem.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.MudProjectile; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWaterElemental.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWaterElemental.java index 232d5728..ab141887 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWaterElemental.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWaterElemental.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.monster.IMob; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java index 0b39a900..9c7b816a 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/mob/EntityWingedFireDemon.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.mob; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.entity.projectile.FireProjectile; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/WaterProjectile.java b/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/WaterProjectile.java index 8bbcc689..bb923775 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/WaterProjectile.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/entity/projectile/WaterProjectile.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.entity.projectile; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.PacketHandler; import cpw.mods.fml.common.network.PacketDispatcher; import net.minecraft.entity.Entity; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java b/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java index 1e04a863..e75fc4da 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/AWBaseItems.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModItems; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.entity.player.EntityPlayer; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/ActivationCrystal.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ActivationCrystal.java index 203157d3..9692d179 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ActivationCrystal.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ActivationCrystal.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; @@ -12,6 +12,7 @@ import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.Icon; import net.minecraft.util.MathHelper; import net.minecraft.world.World; + import org.lwjgl.input.Keyboard; import java.util.List; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/AirInk.java b/BM_src/WayofTime/alchemicalWizardry/common/items/AirInk.java index 352447e2..bc4c437d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/AirInk.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/AirInk.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/ArmourInhibitor.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ArmourInhibitor.java index 415a41dd..790bd88e 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ArmourInhibitor.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ArmourInhibitor.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/BlankSpell.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BlankSpell.java index cb5930aa..ee56fd6e 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BlankSpell.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BlankSpell.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java index 511536cc..df51c98c 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BloodShard.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.ModItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/BloodboundSword.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BloodboundSword.java index 40dd755a..92c188a4 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BloodboundSword.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BloodboundSword.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/items/BoundArmour.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundArmour.java index 04291acc..f546cf8c 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundArmour.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundArmour.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.IBindable; import WayofTime.alchemicalWizardry.common.ModItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundAxe.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundAxe.java index 40ca063f..10ffdba7 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundAxe.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundAxe.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IBindable; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundPickaxe.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundPickaxe.java index 0a9c6d6f..c48186a7 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundPickaxe.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundPickaxe.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IBindable; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundShovel.java b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundShovel.java index e57b1112..6579f380 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/BoundShovel.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/BoundShovel.java @@ -1,8 +1,10 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IBindable; + import com.google.common.collect.Multimap; + 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/items/CheatyItem.java b/BM_src/WayofTime/alchemicalWizardry/common/items/CheatyItem.java index 1cf49a07..055dc6ee 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/CheatyItem.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/CheatyItem.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IBindable; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; import WayofTime.alchemicalWizardry.common.PacketHandler; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/DaggerOfSacrifice.java b/BM_src/WayofTime/alchemicalWizardry/common/items/DaggerOfSacrifice.java index c5b644db..bf9d6ffa 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/DaggerOfSacrifice.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/DaggerOfSacrifice.java @@ -1,8 +1,10 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; + import com.google.common.collect.Multimap; + import cpw.mods.fml.common.network.PacketDispatcher; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/EarthInk.java b/BM_src/WayofTime/alchemicalWizardry/common/items/EarthInk.java index d01a3eea..4dc3f631 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/EarthInk.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/EarthInk.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/EnergyBattery.java b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBattery.java index 6f01c4c7..3bc4b51b 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBattery.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBattery.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.*; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import cpw.mods.fml.common.network.PacketDispatcher; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBazooka.java b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBazooka.java index 08537f9e..93cc8a0b 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBazooka.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBazooka.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaMainProjectile; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBlast.java b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBlast.java index e35147ee..71926ea3 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBlast.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyBlast.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyItems.java b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyItems.java index 6a68023b..ef7ef76b 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyItems.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergyItems.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IBindable; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; import WayofTime.alchemicalWizardry.common.PacketHandler; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergySword.java b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergySword.java index 349a5e8c..d38a3d87 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/EnergySword.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/EnergySword.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/items/FireInk.java b/BM_src/WayofTime/alchemicalWizardry/common/items/FireInk.java index 113660d1..d1d99c56 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/FireInk.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/FireInk.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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 cabe42df..3f65c34d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemDiabloKey.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemDiabloKey.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IBindable; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java index 0f952ed5..7e5df695 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemRitualDiviner.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.rituals.RitualComponent; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java index 0c84aea8..3b01db4f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ItemSanguineArmour.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.ModItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/LavaCrystal.java b/BM_src/WayofTime/alchemicalWizardry/common/items/LavaCrystal.java index 074317fc..0f45e31c 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/LavaCrystal.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/LavaCrystal.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/SacrificialDagger.java b/BM_src/WayofTime/alchemicalWizardry/common/items/SacrificialDagger.java index b355e558..2168064a 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/SacrificialDagger.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/SacrificialDagger.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/ScribeTool.java b/BM_src/WayofTime/alchemicalWizardry/common/items/ScribeTool.java index 578512e9..aac29e08 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/ScribeTool.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/ScribeTool.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.world.World; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/TelepositionFocus.java b/BM_src/WayofTime/alchemicalWizardry/common/items/TelepositionFocus.java index aae480c4..319c9d0c 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/TelepositionFocus.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/TelepositionFocus.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/WaterInk.java b/BM_src/WayofTime/alchemicalWizardry/common/items/WaterInk.java index e88044e1..0a7e3c63 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/WaterInk.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/WaterInk.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/WaterScribeTool.java b/BM_src/WayofTime/alchemicalWizardry/common/items/WaterScribeTool.java index 5c269f2f..f0274db8 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/WaterScribeTool.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/WaterScribeTool.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/AlchemyFlask.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyFlask.java index a77ca7ea..764b019d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyFlask.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyFlask.java @@ -1,8 +1,10 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyPotionHelper; + import com.google.common.collect.HashMultimap; + 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 3bbd3ce9..55d82fbb 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyReagent.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/AlchemyReagent.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; import cpw.mods.fml.relauncher.Side; @@ -10,6 +10,7 @@ import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumChatFormatting; + import org.lwjgl.input.Keyboard; import java.util.List; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/EnhancedFillingAgent.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/EnhancedFillingAgent.java index 492de908..340fa792 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/EnhancedFillingAgent.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/EnhancedFillingAgent.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/LengtheningCatalyst.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/LengtheningCatalyst.java index a8353dd3..8287ac84 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/LengtheningCatalyst.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/LengtheningCatalyst.java @@ -1,12 +1,13 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ICatalyst; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumChatFormatting; + import org.lwjgl.input.Keyboard; import java.util.List; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/PowerCatalyst.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/PowerCatalyst.java index c973be52..44797fba 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/PowerCatalyst.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/PowerCatalyst.java @@ -1,12 +1,13 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ICatalyst; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumChatFormatting; + import org.lwjgl.input.Keyboard; import java.util.List; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardBindingAgent.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardBindingAgent.java index cd119f57..589911b9 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardBindingAgent.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardBindingAgent.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IBindingAgent; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; import cpw.mods.fml.relauncher.Side; @@ -10,6 +10,7 @@ import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumChatFormatting; + import org.lwjgl.input.Keyboard; import java.util.List; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardFillingAgent.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardFillingAgent.java index 3f15b321..563a78d1 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardFillingAgent.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/StandardFillingAgent.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/WeakFillingAgent.java b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/WeakFillingAgent.java index 8096c453..e5fe7e4b 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/potion/WeakFillingAgent.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/potion/WeakFillingAgent.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.potion; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.IFillingAgent; import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry; import cpw.mods.fml.relauncher.Side; @@ -10,6 +10,7 @@ import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumChatFormatting; + import org.lwjgl.input.Keyboard; import java.util.List; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/AirSigil.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/AirSigil.java index 03ffe4da..a9b4ee95 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/AirSigil.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/AirSigil.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/DivinationSigil.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/DivinationSigil.java index 826dff19..c51786da 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/DivinationSigil.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/DivinationSigil.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.items.EnergyItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java index 0d6d6593..d8676214 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/ItemBloodLightSigil.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.entity.projectile.EntityBloodLightProjectile; import WayofTime.alchemicalWizardry.common.items.EnergyItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/LavaSigil.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/LavaSigil.java index 3366a0c2..e18894d6 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/LavaSigil.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/LavaSigil.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyBattery; import WayofTime.alchemicalWizardry.common.items.EnergyItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfElementalAffinity.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfElementalAffinity.java index 9e2247a3..3b5dd7aa 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfElementalAffinity.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfElementalAffinity.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/SigilOfGrowth.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfGrowth.java index a6d4661c..b7b693a5 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfGrowth.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfGrowth.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHaste.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHaste.java index 5300ce63..ff56bd33 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHaste.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHaste.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; 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 6dd03e27..4ac72cdc 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHolding.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfHolding.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfMagnetism.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfMagnetism.java index bc9cf1a0..c0925457 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfMagnetism.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfMagnetism.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java index d8319927..7899cf48 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheBridge.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.ModBlocks; import WayofTime.alchemicalWizardry.common.items.EnergyItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheFastMiner.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheFastMiner.java index e033491d..96db2e6e 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheFastMiner.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfTheFastMiner.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfWind.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfWind.java index e41f3bba..514e4ad3 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfWind.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/SigilOfWind.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/VoidSigil.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/VoidSigil.java index 62b33ea9..4fe816aa 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/VoidSigil.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/VoidSigil.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyBattery; import WayofTime.alchemicalWizardry.common.items.EnergyItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/WaterSigil.java b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/WaterSigil.java index 8f190959..bba0ee01 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/WaterSigil.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/sigil/WaterSigil.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.sigil; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusBloodBlast.java b/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusBloodBlast.java index 86eb8d2a..6c336f65 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusBloodBlast.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusBloodBlast.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.thaumcraft; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import WayofTime.alchemicalWizardry.common.items.EnergyItems; import cpw.mods.fml.relauncher.Side; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusGravityWell.java b/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusGravityWell.java index 8f3e7ec3..505f97f9 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusGravityWell.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/items/thaumcraft/FocusGravityWell.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.items.thaumcraft; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; 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/RitualEffectFlight.java b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectFlight.java index b3c56d4b..a9f1870f 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectFlight.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectFlight.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.rituals; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; import net.minecraft.entity.player.EntityPlayer; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java index 7654fa98..7b091319 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/rituals/RitualEffectSoulBound.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.rituals; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork; import WayofTime.alchemicalWizardry.common.ModItems; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/spell/simple/SpellWateryGrave.java b/BM_src/WayofTime/alchemicalWizardry/common/spell/simple/SpellWateryGrave.java index 2962f318..874005c7 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/spell/simple/SpellWateryGrave.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/spell/simple/SpellWateryGrave.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.spell.simple; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.entity.projectile.WaterProjectile; import WayofTime.alchemicalWizardry.common.items.EnergyItems; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/summoning/SummoningHelper.java b/BM_src/WayofTime/alchemicalWizardry/common/summoning/SummoningHelper.java index e6c2fa0b..b4b459ee 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/summoning/SummoningHelper.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/summoning/SummoningHelper.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.summoning; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.EntityAirElemental; import WayofTime.alchemicalWizardry.common.entity.mob.*; import net.minecraft.entity.EntityLivingBase; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/summoning/meteor/MeteorParadigm.java b/BM_src/WayofTime/alchemicalWizardry/common/summoning/meteor/MeteorParadigm.java index e10e8512..40159f10 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/summoning/meteor/MeteorParadigm.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/summoning/meteor/MeteorParadigm.java @@ -1,6 +1,6 @@ package WayofTime.alchemicalWizardry.common.summoning.meteor; -import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import net.minecraft.block.Block; import net.minecraft.item.ItemStack; import net.minecraft.world.World; diff --git a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java index de14ddf3..d4cd6d3a 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEAltar.java @@ -1,5 +1,6 @@ package WayofTime.alchemicalWizardry.common.tileEntity; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.*; import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.AltarUpgradeComponent; import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars;