Auto-Sync
This commit is contained in:
parent
b2674a5711
commit
54b4b91c94
5 changed files with 6 additions and 11 deletions
|
@ -9,7 +9,7 @@ import net.minecraft.util.MovingObjectPosition;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
/** Override version of the vanilla egg to allow additional bird types to exist with the same item
|
/** Override version of the vanilla egg to allow additional bird types to exist with the same item
|
||||||
*
|
*
|
||||||
* @author DarkGuardsman */
|
* @author DarkGuardsman */
|
||||||
public class EntityFarmEgg extends EntityThrowable
|
public class EntityFarmEgg extends EntityThrowable
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,16 +1,11 @@
|
||||||
package dark.farmtech.entities;
|
package dark.farmtech.entities;
|
||||||
|
|
||||||
import cpw.mods.fml.common.registry.EntityRegistry;
|
|
||||||
import dark.farmtech.FarmTech;
|
|
||||||
import net.minecraft.entity.Entity;
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.entity.EntityLiving;
|
|
||||||
import net.minecraft.entity.EnumCreatureType;
|
|
||||||
import net.minecraft.entity.passive.EntityChicken;
|
import net.minecraft.entity.passive.EntityChicken;
|
||||||
import net.minecraft.world.World;
|
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
|
/** Enum of different birds that can be spawned by an egg or in the world threw normal spawning
|
||||||
*
|
*
|
||||||
* @author DarkGuardsman */
|
* @author DarkGuardsman */
|
||||||
public enum EnumBird
|
public enum EnumBird
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,9 +17,9 @@ import net.minecraftforge.oredict.OreDictionary;
|
||||||
import universalelectricity.core.vector.Vector3;
|
import universalelectricity.core.vector.Vector3;
|
||||||
import cpw.mods.fml.relauncher.Side;
|
import cpw.mods.fml.relauncher.Side;
|
||||||
import cpw.mods.fml.relauncher.SideOnly;
|
import cpw.mods.fml.relauncher.SideOnly;
|
||||||
|
import dark.core.helpers.ItemWorldHelper;
|
||||||
import dark.core.interfaces.IExtraInfo.IExtraItemInfo;
|
import dark.core.interfaces.IExtraInfo.IExtraItemInfo;
|
||||||
import dark.core.prefab.ModPrefab;
|
import dark.core.prefab.ModPrefab;
|
||||||
import dark.core.helpers.ItemWorldHelper;
|
|
||||||
import dark.farmtech.FarmTech;
|
import dark.farmtech.FarmTech;
|
||||||
|
|
||||||
/** Item for storing all kinds of food based items including meats, fruits, pies, cakes, breads, etc
|
/** Item for storing all kinds of food based items including meats, fruits, pies, cakes, breads, etc
|
||||||
|
|
|
@ -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
|
* 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
|
* 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.
|
* it with a lighter. Water and food must also be added by hand.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @author DarkGuardsman */
|
* @author DarkGuardsman */
|
||||||
public class BlockCookingPot extends BlockMachine
|
public class BlockCookingPot extends BlockMachine
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
/** Exactly the same as a normal cooking pot but with completely different recipes that can only be
|
||||||
* used in the nether.
|
* used in the nether.
|
||||||
*
|
*
|
||||||
* @author DarkGuardsman */
|
* @author DarkGuardsman */
|
||||||
public class TileEntityHellCookingPot extends TileEntityCookingPot
|
public class TileEntityHellCookingPot extends TileEntityCookingPot
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue