diff --git a/src/main/java/com/github/bartimaeusnek/cropspp/crops/cpp/SugarBeetCrop.java b/src/main/java/com/github/bartimaeusnek/cropspp/crops/cpp/SugarBeetCrop.java index 27dbdfb..200bf8f 100644 --- a/src/main/java/com/github/bartimaeusnek/cropspp/crops/cpp/SugarBeetCrop.java +++ b/src/main/java/com/github/bartimaeusnek/cropspp/crops/cpp/SugarBeetCrop.java @@ -1,14 +1,10 @@ package com.github.bartimaeusnek.cropspp.crops.cpp; -import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.item.ItemStack; -import net.minecraft.util.IIcon; import com.github.bartimaeusnek.cropspp.abstracts.BasicFoodCrop; import com.github.bartimaeusnek.cropspp.items.CppItems; -import cpw.mods.fml.relauncher.Side; -import cpw.mods.fml.relauncher.SideOnly; import ic2.api.crops.ICropTile; public class SugarBeetCrop extends BasicFoodCrop { @@ -37,17 +33,6 @@ public ItemStack getGain(ICropTile var1) { return new ItemStack(CppItems.CppBerries, 1, 1); } - @SideOnly(Side.CLIENT) - public void registerSprites(IIconRegister iconRegister) { - textures = new IIcon[maxSize()]; - - for (int i = 1; i <= textures.length - 1; i++) { - // ic2:crop/blockCrop.NAME.n is the legacy name for backwards compatiblity - textures[i - 1] = iconRegister.registerIcon("ic2:crop/carrots." + i); - } - textures[2] = iconRegister.registerIcon("bpp:crop/blockCrop.Wild Carrots.3"); - } - @Override public ItemStack getDisplayItem() { return new ItemStack(CppItems.CppBerries, 1, 1); diff --git a/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.1.png b/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.1.png new file mode 100644 index 0000000..5907e8a Binary files /dev/null and b/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.1.png differ diff --git a/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.2.png b/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.2.png new file mode 100644 index 0000000..5dc8312 Binary files /dev/null and b/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.2.png differ diff --git a/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.3.png b/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.3.png new file mode 100644 index 0000000..a964ca8 Binary files /dev/null and b/src/main/resources/assets/bpp/textures/blocks/crop/blockCrop.Sugar Beet.3.png differ