From 54b4b91c94bdf373d865b27c0503d26d8532a395 Mon Sep 17 00:00:00 2001 From: DarkGuardsman Date: Tue, 26 Nov 2013 00:30:12 -0500 Subject: [PATCH] Auto-Sync --- src/dark/farmtech/entities/EntityFarmEgg.java | 2 +- src/dark/farmtech/entities/EnumBird.java | 7 +------ src/dark/farmtech/item/ItemFarmFood.java | 2 +- src/dark/farmtech/machines/BlockCookingPot.java | 4 ++-- src/dark/farmtech/machines/TileEntityHellCookingPot.java | 2 +- 5 files changed, 6 insertions(+), 11 deletions(-) diff --git a/src/dark/farmtech/entities/EntityFarmEgg.java b/src/dark/farmtech/entities/EntityFarmEgg.java index 988a24300..ec66afdf1 100644 --- a/src/dark/farmtech/entities/EntityFarmEgg.java +++ b/src/dark/farmtech/entities/EntityFarmEgg.java @@ -9,7 +9,7 @@ import net.minecraft.util.MovingObjectPosition; import net.minecraft.world.World; /** Override version of the vanilla egg to allow additional bird types to exist with the same item - * + * * @author DarkGuardsman */ public class EntityFarmEgg extends EntityThrowable { diff --git a/src/dark/farmtech/entities/EnumBird.java b/src/dark/farmtech/entities/EnumBird.java index 6ab05cc10..59deeb3c9 100644 --- a/src/dark/farmtech/entities/EnumBird.java +++ b/src/dark/farmtech/entities/EnumBird.java @@ -1,16 +1,11 @@ package dark.farmtech.entities; -import cpw.mods.fml.common.registry.EntityRegistry; -import dark.farmtech.FarmTech; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLiving; -import net.minecraft.entity.EnumCreatureType; import net.minecraft.entity.passive.EntityChicken; import net.minecraft.world.World; -import net.minecraft.world.biome.BiomeGenBase; /** Enum of different birds that can be spawned by an egg or in the world threw normal spawning - * + * * @author DarkGuardsman */ public enum EnumBird { diff --git a/src/dark/farmtech/item/ItemFarmFood.java b/src/dark/farmtech/item/ItemFarmFood.java index 85df42aca..a9275e5c2 100644 --- a/src/dark/farmtech/item/ItemFarmFood.java +++ b/src/dark/farmtech/item/ItemFarmFood.java @@ -17,9 +17,9 @@ import net.minecraftforge.oredict.OreDictionary; import universalelectricity.core.vector.Vector3; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; +import dark.core.helpers.ItemWorldHelper; import dark.core.interfaces.IExtraInfo.IExtraItemInfo; import dark.core.prefab.ModPrefab; -import dark.core.helpers.ItemWorldHelper; import dark.farmtech.FarmTech; /** Item for storing all kinds of food based items including meats, fruits, pies, cakes, breads, etc diff --git a/src/dark/farmtech/machines/BlockCookingPot.java b/src/dark/farmtech/machines/BlockCookingPot.java index 44bdd0c93..375ae9d72 100644 --- a/src/dark/farmtech/machines/BlockCookingPot.java +++ b/src/dark/farmtech/machines/BlockCookingPot.java @@ -21,8 +21,8 @@ import dark.farmtech.FarmTech; * amounts of soup. This cooking pot should operate without a gui. Instead of using a gui a player * will need to click the pot with the items. This also means adding wood to the bottom and starting * it with a lighter. Water and food must also be added by hand. - * - * + * + * * @author DarkGuardsman */ public class BlockCookingPot extends BlockMachine { diff --git a/src/dark/farmtech/machines/TileEntityHellCookingPot.java b/src/dark/farmtech/machines/TileEntityHellCookingPot.java index ea94bb462..e8c7976f9 100644 --- a/src/dark/farmtech/machines/TileEntityHellCookingPot.java +++ b/src/dark/farmtech/machines/TileEntityHellCookingPot.java @@ -2,7 +2,7 @@ package dark.farmtech.machines; /** Exactly the same as a normal cooking pot but with completely different recipes that can only be * used in the nether. - * + * * @author DarkGuardsman */ public class TileEntityHellCookingPot extends TileEntityCookingPot {