Auto-Sync

This commit is contained in:
DarkGuardsman 2013-11-26 00:30:12 -05:00
parent b2674a5711
commit 54b4b91c94
5 changed files with 6 additions and 11 deletions

View file

@ -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
{

View file

@ -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
{

View file

@ -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

View file

@ -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
{

View file

@ -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
{