Switched all of the BiomesOPlenty: textures to use their lowercase alternative (biomesoplenty:)
This commit is contained in:
parent
92032174bc
commit
58db4a15d1
81 changed files with 164 additions and 165 deletions
|
@ -32,9 +32,9 @@ public class ArmorAmethyst extends ItemArmor
|
|||
public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer)
|
||||
{
|
||||
if (stack.itemID == Items.helmetAmethyst.get().itemID || stack.itemID == Items.chestplateAmethyst.get().itemID || stack.itemID == Items.bootsAmethyst.get().itemID)
|
||||
return "/mods/BiomesOPlenty/textures/armor/amethyst_1.png";
|
||||
return "biomesoplenty:textures/armor/amethyst_1.png";
|
||||
if (stack.itemID == Items.leggingsAmethyst.get().itemID)
|
||||
return "/mods/BiomesOPlenty/textures/armor/amethyst_2.png";
|
||||
return "biomesoplenty:textures/armor/amethyst_2.png";
|
||||
|
||||
return null;
|
||||
}
|
||||
|
@ -42,10 +42,10 @@ public class ArmorAmethyst extends ItemArmor
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
if (textureID == 0) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethysthelmet"); }
|
||||
else if (textureID == 1) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystchestplate"); }
|
||||
else if (textureID == 2) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystleggings"); }
|
||||
else if (textureID == 3) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystboots"); }
|
||||
else { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball"); }
|
||||
if (textureID == 0) { itemIcon = iconRegister.registerIcon("biomesoplenty:amethysthelmet"); }
|
||||
else if (textureID == 1) { itemIcon = iconRegister.registerIcon("biomesoplenty:amethystchestplate"); }
|
||||
else if (textureID == 2) { itemIcon = iconRegister.registerIcon("biomesoplenty:amethystleggings"); }
|
||||
else if (textureID == 3) { itemIcon = iconRegister.registerIcon("biomesoplenty:amethystboots"); }
|
||||
else { itemIcon = iconRegister.registerIcon("biomesoplenty:mudball"); }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ public class ArmorFlowerBand extends ItemArmor
|
|||
textures = new Icon[flowerBandTypes.length];
|
||||
|
||||
for (int i = 0; i < flowerBandTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + flowerBandTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + flowerBandTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -61,16 +61,16 @@ public class ArmorFlowerBand extends ItemArmor
|
|||
public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer)
|
||||
{
|
||||
if (stack.getItemDamage() == 0)
|
||||
return "/mods/BiomesOPlenty/textures/armor/dullflowerband.png";
|
||||
return "biomesoplenty:textures/armor/dullflowerband.png";
|
||||
|
||||
if (stack.getItemDamage() == 1)
|
||||
return "/mods/BiomesOPlenty/textures/armor/plainflowerband.png";
|
||||
return "biomesoplenty:textures/armor/plainflowerband.png";
|
||||
|
||||
if (stack.getItemDamage() == 2)
|
||||
return "/mods/BiomesOPlenty/textures/armor/lushflowerband.png";
|
||||
return "biomesoplenty:textures/armor/lushflowerband.png";
|
||||
|
||||
if (stack.getItemDamage() == 3)
|
||||
return "/mods/BiomesOPlenty/textures/armor/exoticflowerband.png";
|
||||
return "biomesoplenty:textures/armor/exoticflowerband.png";
|
||||
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -23,9 +23,9 @@ public class ArmorMuddy extends ItemArmor
|
|||
public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer)
|
||||
{
|
||||
if (stack.itemID == Items.helmetMud.get().itemID || stack.itemID == Items.chestplateMud.get().itemID || stack.itemID == Items.bootsMud.get().itemID)
|
||||
return "/mods/BiomesOPlenty/textures/armor/mud_1.png";
|
||||
return "biomesoplenty:textures/armor/mud_1.png";
|
||||
if (stack.itemID == Items.leggingsMud.get().itemID)
|
||||
return "/mods/BiomesOPlenty/textures/armor/mud_2.png";
|
||||
return "biomesoplenty:textures/armor/mud_2.png";
|
||||
|
||||
return null;
|
||||
}
|
||||
|
@ -33,10 +33,10 @@ public class ArmorMuddy extends ItemArmor
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
if (textureID == 0) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudhelmet"); }
|
||||
else if (textureID == 1) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudchestplate"); }
|
||||
else if (textureID == 2) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudleggings"); }
|
||||
else if (textureID == 3) { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudboots"); }
|
||||
else { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball"); }
|
||||
if (textureID == 0) { itemIcon = iconRegister.registerIcon("biomesoplenty:mudhelmet"); }
|
||||
else if (textureID == 1) { itemIcon = iconRegister.registerIcon("biomesoplenty:mudchestplate"); }
|
||||
else if (textureID == 2) { itemIcon = iconRegister.registerIcon("biomesoplenty:mudleggings"); }
|
||||
else if (textureID == 3) { itemIcon = iconRegister.registerIcon("biomesoplenty:mudboots"); }
|
||||
else { itemIcon = iconRegister.registerIcon("biomesoplenty:mudball"); }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,15 +47,15 @@ public class BlockAltar extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
altarFrame = iconRegister.registerIcon("BiomesOPlenty:altarframe");
|
||||
altarFrameTop = iconRegister.registerIcon("BiomesOPlenty:altarframetop");
|
||||
altarFrame = iconRegister.registerIcon("biomesoplenty:altarframe");
|
||||
altarFrameTop = iconRegister.registerIcon("biomesoplenty:altarframetop");
|
||||
|
||||
frameApatite = iconRegister.registerIcon("BiomesOPlenty:frameapatite");
|
||||
framePeridot = iconRegister.registerIcon("BiomesOPlenty:frameperidot");
|
||||
frameRuby = iconRegister.registerIcon("BiomesOPlenty:frameruby");
|
||||
frameSapphire = iconRegister.registerIcon("BiomesOPlenty:framesapphire");
|
||||
frameTanzanite = iconRegister.registerIcon("BiomesOPlenty:frametanzanite");
|
||||
frameTopaz = iconRegister.registerIcon("BiomesOPlenty:frametopaz");
|
||||
frameApatite = iconRegister.registerIcon("biomesoplenty:frameapatite");
|
||||
framePeridot = iconRegister.registerIcon("biomesoplenty:frameperidot");
|
||||
frameRuby = iconRegister.registerIcon("biomesoplenty:frameruby");
|
||||
frameSapphire = iconRegister.registerIcon("biomesoplenty:framesapphire");
|
||||
frameTanzanite = iconRegister.registerIcon("biomesoplenty:frametanzanite");
|
||||
frameTopaz = iconRegister.registerIcon("biomesoplenty:frametopaz");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -26,7 +26,7 @@ public class BlockAsh extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:ashblock");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:ashblock");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -33,7 +33,7 @@ public class BlockBOPAmethyst extends Block
|
|||
textures = new Icon[types.length];
|
||||
|
||||
for (int i = 0; i < types.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+types[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+types[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -47,9 +47,9 @@ public class BlockBOPAppleLeaves extends BlockLeavesBase implements IShearable
|
|||
|
||||
for (int i = 0; i < 4; ++i)
|
||||
{
|
||||
textures[0][i] = iconRegister.registerIcon("BiomesOPlenty:leaves_apple" + i + "_fancy");
|
||||
textures[1][i] = iconRegister.registerIcon("BiomesOPlenty:leaves_apple" + i + "_fast");
|
||||
textures[2][i] = iconRegister.registerIcon("BiomesOPlenty:better_leaves_apple" + i);
|
||||
textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_apple" + i + "_fancy");
|
||||
textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_apple" + i + "_fast");
|
||||
textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_apple" + i);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -43,9 +43,9 @@ public class BlockBOPColorizedLeaves extends BlockLeavesBase implements IShearab
|
|||
textures = new Icon[3][leaves.length];
|
||||
for (int i = 0; i < leaves.length; ++i)
|
||||
{
|
||||
textures[0][i] = iconRegister.registerIcon("BiomesOPlenty:leaves_" + leaves[i] + "_fancy");
|
||||
textures[1][i] = iconRegister.registerIcon("BiomesOPlenty:leaves_" + leaves[i] + "_fast");
|
||||
textures[2][i] = iconRegister.registerIcon("BiomesOPlenty:better_leaves_" + leaves[i]);
|
||||
textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy");
|
||||
textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast");
|
||||
textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ public class BlockBOPColorizedSapling extends BlockSapling
|
|||
textures = new Icon[saplings.length];
|
||||
|
||||
for (int i = 0; i < saplings.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:sapling_" + saplings[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:sapling_" + saplings[i]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ public class BlockBOPCoral extends BlockFlower
|
|||
textures = new Icon[coral.length];
|
||||
|
||||
for (int i = 0; i < coral.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + coral[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + coral[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ public class BlockBOPFlower extends BlockFlower
|
|||
textures = new Icon[plants.length];
|
||||
|
||||
for (int i = 0; i < plants.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + plants[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + plants[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@ public class BlockBOPFoliage extends BlockFlower implements IShearable
|
|||
textures = new Icon[foliageTypes.length];
|
||||
|
||||
for (int i = 0; i < textures.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+foliageTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+foliageTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -80,39 +80,39 @@ public class BlockBOPGeneric extends Block
|
|||
switch (type)
|
||||
{
|
||||
case ASH_STONE:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:ashstone");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:ashstone");
|
||||
break;
|
||||
|
||||
case CRAG_ROCK:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:cragrock");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:cragrock");
|
||||
break;
|
||||
|
||||
case DRIED_DIRT:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:drieddirt");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:drieddirt");
|
||||
break;
|
||||
|
||||
case HARD_DIRT:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:harddirt");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:harddirt");
|
||||
break;
|
||||
|
||||
case HARD_ICE:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:hardice");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:hardice");
|
||||
break;
|
||||
|
||||
case HARD_SAND:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:hardsand");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:hardsand");
|
||||
break;
|
||||
|
||||
case MUD_BRICK:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:mudbrick");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:mudbrick");
|
||||
break;
|
||||
|
||||
case HOLY_DIRT:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:holydirt");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:holydirt");
|
||||
break;
|
||||
|
||||
case CRYSTAL:
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:crystal");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:crystal");
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
@ -269,7 +269,7 @@ public class BlockBOPGlass extends Block
|
|||
textures = new Icon[glassTypes.length];
|
||||
|
||||
for (int i = 0; i < glassTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+glassTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+glassTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -36,19 +36,19 @@ public class BlockBOPGrass extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
blockIcon[0][0] = iconRegister.registerIcon("BiomesOPlenty:holydirt");
|
||||
blockIcon[0][1] = iconRegister.registerIcon("BiomesOPlenty:holygrass_top");
|
||||
blockIcon[0][2] = iconRegister.registerIcon("BiomesOPlenty:holygrass_side");
|
||||
blockIcon[0][3] = iconRegister.registerIcon("BiomesOPlenty:holygrass_side");
|
||||
blockIcon[0][4] = iconRegister.registerIcon("BiomesOPlenty:holygrass_side");
|
||||
blockIcon[0][5] = iconRegister.registerIcon("BiomesOPlenty:holygrass_side");
|
||||
blockIcon[0][0] = iconRegister.registerIcon("biomesoplenty:holydirt");
|
||||
blockIcon[0][1] = iconRegister.registerIcon("biomesoplenty:holygrass_top");
|
||||
blockIcon[0][2] = iconRegister.registerIcon("biomesoplenty:holygrass_side");
|
||||
blockIcon[0][3] = iconRegister.registerIcon("biomesoplenty:holygrass_side");
|
||||
blockIcon[0][4] = iconRegister.registerIcon("biomesoplenty:holygrass_side");
|
||||
blockIcon[0][5] = iconRegister.registerIcon("biomesoplenty:holygrass_side");
|
||||
|
||||
blockIcon[1][0] = iconRegister.registerIcon("BiomesOPlenty:smolderinggrass_bottom");
|
||||
blockIcon[1][1] = iconRegister.registerIcon("BiomesOPlenty:smolderinggrass_top");
|
||||
blockIcon[1][2] = iconRegister.registerIcon("BiomesOPlenty:smolderinggrass_side");
|
||||
blockIcon[1][3] = iconRegister.registerIcon("BiomesOPlenty:smolderinggrass_side");
|
||||
blockIcon[1][4] = iconRegister.registerIcon("BiomesOPlenty:smolderinggrass_side");
|
||||
blockIcon[1][5] = iconRegister.registerIcon("BiomesOPlenty:smolderinggrass_side");
|
||||
blockIcon[1][0] = iconRegister.registerIcon("biomesoplenty:smolderinggrass_bottom");
|
||||
blockIcon[1][1] = iconRegister.registerIcon("biomesoplenty:smolderinggrass_top");
|
||||
blockIcon[1][2] = iconRegister.registerIcon("biomesoplenty:smolderinggrass_side");
|
||||
blockIcon[1][3] = iconRegister.registerIcon("biomesoplenty:smolderinggrass_side");
|
||||
blockIcon[1][4] = iconRegister.registerIcon("biomesoplenty:smolderinggrass_side");
|
||||
blockIcon[1][5] = iconRegister.registerIcon("biomesoplenty:smolderinggrass_side");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -50,9 +50,9 @@ public class BlockBOPLeaves extends BlockLeavesBase implements IShearable
|
|||
textures = new Icon[3][leaves.length];
|
||||
for (int i = 0; i < leaves.length; ++i)
|
||||
{
|
||||
textures[0][i] = iconRegister.registerIcon("BiomesOPlenty:leaves_" + leaves[i] + "_fancy");
|
||||
textures[1][i] = iconRegister.registerIcon("BiomesOPlenty:leaves_" + leaves[i] + "_fast");
|
||||
textures[2][i] = iconRegister.registerIcon("BiomesOPlenty:better_leaves_" + leaves[i]);
|
||||
textures[0][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fancy");
|
||||
textures[1][i] = iconRegister.registerIcon("biomesoplenty:leaves_" + leaves[i] + "_fast");
|
||||
textures[2][i] = iconRegister.registerIcon("biomesoplenty:better_leaves_" + leaves[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -46,13 +46,13 @@ public class BlockBOPLog extends Block
|
|||
{
|
||||
if (i != 11)
|
||||
{
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:log_"+types[i]+"_side");
|
||||
logHearts[i] = iconRegister.registerIcon("BiomesOPlenty:log_"+types[i]+"_heart");
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_side");
|
||||
logHearts[i] = iconRegister.registerIcon("biomesoplenty:log_"+types[i]+"_heart");
|
||||
}
|
||||
}
|
||||
|
||||
textures[11] = iconRegister.registerIcon("BiomesOPlenty:bigflowerstem_side");
|
||||
logHearts[11] = iconRegister.registerIcon("BiomesOPlenty:bigflowerstem_heart");
|
||||
textures[11] = iconRegister.registerIcon("biomesoplenty:bigflowerstem_side");
|
||||
logHearts[11] = iconRegister.registerIcon("biomesoplenty:bigflowerstem_heart");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -41,7 +41,7 @@ public class BlockBOPMushroom extends BlockFlower
|
|||
textures = new Icon[plants.length];
|
||||
|
||||
for (int i = 0; i < plants.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + plants[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + plants[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -37,8 +37,8 @@ public class BlockBOPPetals extends BlockLeavesBase implements IShearable
|
|||
textures = new Icon[petals.length][2];
|
||||
|
||||
for (int i = 0; i < petals.length; ++i) {
|
||||
textures[i][0] = iconRegister.registerIcon("BiomesOPlenty:" + petals[i]);
|
||||
textures[i][1] = iconRegister.registerIcon("BiomesOPlenty:better_" + petals[i]);
|
||||
textures[i][0] = iconRegister.registerIcon("biomesoplenty:" + petals[i]);
|
||||
textures[i][1] = iconRegister.registerIcon("biomesoplenty:better_" + petals[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ public class BlockBOPPlank extends Block
|
|||
textures = new Icon[woodTypes.length];
|
||||
|
||||
for (int i = 0; i < woodTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+woodTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+woodTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ public class BlockBOPPlant extends BlockFlower implements IShearable
|
|||
textures = new Icon[plants.length];
|
||||
|
||||
for (int i = 0; i < plants.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + plants[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + plants[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ public class BlockBOPRedRock extends Block
|
|||
textures = new Icon[types.length];
|
||||
|
||||
for (int i = 0; i < types.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+types[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+types[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ public class BlockBOPSapling extends BlockSapling
|
|||
textures = new Icon[saplings.length];
|
||||
|
||||
for (int i = 0; i < saplings.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:sapling_" + saplings[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:sapling_" + saplings[i]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ public class BlockBOPSkystone extends Block
|
|||
textures = new Icon[types.length];
|
||||
|
||||
for (int i = 0; i < types.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+types[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+types[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ public class BlockBOPSlab extends BlockHalfSlab
|
|||
textures = new Icon[rockTypes.length];
|
||||
|
||||
for (int i = 0; i < rockTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+rockTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+rockTypes[i]);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -67,7 +67,7 @@ public class BlockBOPSlab extends BlockHalfSlab
|
|||
textures = new Icon[woodTypes.length];
|
||||
|
||||
for (int i = 0; i < woodTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:plank_"+woodTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:plank_"+woodTypes[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -48,7 +48,7 @@ public class BlockBOPStairs extends BlockStairs
|
|||
textures = new Icon[stoneTypes.length];
|
||||
|
||||
for (int i = 0; i < stoneTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+stoneTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+stoneTypes[i]);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -56,7 +56,7 @@ public class BlockBOPStairs extends BlockStairs
|
|||
textures = new Icon[woodTypes.length];
|
||||
|
||||
for (int i = 0; i < woodTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:plank_"+woodTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:plank_"+woodTypes[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ public class BlockBamboo extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:bamboo");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:bamboo");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -33,7 +33,7 @@ public class BlockBones extends Block {
|
|||
textures = new Icon[boneTypes.length];
|
||||
|
||||
for (int i = 0; i < boneTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+boneTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+boneTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ public class BlockCloud extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:cloud");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:cloud");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public class BlockGrave extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
blank = iconRegister.registerIcon("BiomesOPlenty:blank");
|
||||
blank = iconRegister.registerIcon("biomesoplenty:blank");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -29,7 +29,7 @@ public class BlockIvy extends Block implements IShearable
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:ivy");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:ivy");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -26,7 +26,7 @@ public class BlockMoss extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:moss");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:moss");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -34,7 +34,7 @@ public class BlockMud extends Block
|
|||
textures = new Icon[types.length];
|
||||
|
||||
for (int i = 0; i < types.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+types[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+types[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -27,12 +27,12 @@ public class BlockOriginGrass extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon[0] = par1IconRegister.registerIcon("BiomesOPlenty:origingrass3");
|
||||
blockIcon[1] = par1IconRegister.registerIcon("BiomesOPlenty:origingrass1");
|
||||
blockIcon[2] = par1IconRegister.registerIcon("BiomesOPlenty:origingrass2");
|
||||
blockIcon[3] = par1IconRegister.registerIcon("BiomesOPlenty:origingrass2");
|
||||
blockIcon[4] = par1IconRegister.registerIcon("BiomesOPlenty:origingrass2");
|
||||
blockIcon[5] = par1IconRegister.registerIcon("BiomesOPlenty:origingrass2");
|
||||
blockIcon[0] = par1IconRegister.registerIcon("biomesoplenty:origingrass3");
|
||||
blockIcon[1] = par1IconRegister.registerIcon("biomesoplenty:origingrass1");
|
||||
blockIcon[2] = par1IconRegister.registerIcon("biomesoplenty:origingrass2");
|
||||
blockIcon[3] = par1IconRegister.registerIcon("biomesoplenty:origingrass2");
|
||||
blockIcon[4] = par1IconRegister.registerIcon("biomesoplenty:origingrass2");
|
||||
blockIcon[5] = par1IconRegister.registerIcon("biomesoplenty:origingrass2");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -23,7 +23,7 @@ public class BlockPromisedPortal extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:portal");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:portal");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -20,7 +20,7 @@ public class BlockQuicksand extends Block
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:quicksand");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:quicksand");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -28,7 +28,7 @@ public class BlockTreeMoss extends Block implements IShearable
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:treemoss");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:treemoss");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -29,7 +29,7 @@ public class BlockWillow extends Block implements IShearable
|
|||
@Override
|
||||
public void registerIcons(IconRegister par1IconRegister)
|
||||
{
|
||||
blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:willow");
|
||||
blockIcon = par1IconRegister.registerIcon("biomesoplenty:willow");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -71,7 +71,7 @@ public class ItemGraveRenderer implements IItemRenderer
|
|||
//This is setting the initial location.
|
||||
GL11.glTranslatef((float) x + 0.5F, (float) y + 1.80F, (float) z + 0.5F);
|
||||
//This is the texture of your block. It's pathed to be the same place as your other blocks here.
|
||||
FMLClientHandler.instance().getClient().renderEngine.func_110577_a(new ResourceLocation("BiomesOPlenty:textures/models/grave.png"));
|
||||
FMLClientHandler.instance().getClient().renderEngine.func_110577_a(new ResourceLocation("biomesoplenty:textures/models/grave.png"));
|
||||
//This rotation part is very important! Without it, your model will render upside-down! And for some reason you DO need PushMatrix again!
|
||||
GL11.glPushMatrix();
|
||||
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
||||
|
|
|
@ -42,7 +42,7 @@ public class TileEntityGraveRenderer extends TileEntitySpecialRenderer
|
|||
GL11.glTranslatef((float) x + 0.5F, (float) y + 2.25F, (float) z + 0.5F);
|
||||
|
||||
//This is the texture of your block. It's pathed to be the same place as your other blocks here.
|
||||
FMLClientHandler.instance().getClient().renderEngine.func_110577_a(new ResourceLocation("BiomesOPlenty:textures/models/grave.png"));
|
||||
FMLClientHandler.instance().getClient().renderEngine.func_110577_a(new ResourceLocation("biomesoplenty:textures/models/grave.png"));
|
||||
|
||||
//This rotation part is very important! Without it, your model will render upside-down! And for some reason you DO need PushMatrix again!
|
||||
GL11.glPushMatrix();
|
||||
|
|
|
@ -32,7 +32,6 @@ public class EntityRosester extends EntityChicken
|
|||
public EntityRosester(World par1World)
|
||||
{
|
||||
super(par1World);
|
||||
//this.texture = "/mods/BiomesOPlenty/textures/mobs/rosester.png";
|
||||
this.setSize(0.3F, 0.7F);
|
||||
timeUntilNextEgg = rand.nextInt(6000) + 6000;
|
||||
float var2 = 0.25F;
|
||||
|
|
|
@ -67,7 +67,7 @@ public class RenderGlob extends RenderLiving
|
|||
@Override
|
||||
protected ResourceLocation func_110775_a(Entity entity)
|
||||
{
|
||||
return new ResourceLocation("BiomesOPlenty:textures/mobs/glob.png");
|
||||
return new ResourceLocation("biomesoplenty:textures/mobs/glob.png");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -33,6 +33,6 @@ public class RenderJungleSpider extends RenderSpider
|
|||
@Override
|
||||
protected ResourceLocation func_110775_a(Entity entity)
|
||||
{
|
||||
return new ResourceLocation("BiomesOPlenty:textures/mobs/junglespider.png");
|
||||
return new ResourceLocation("biomesoplenty:textures/mobs/junglespider.png");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,6 +55,6 @@ public class RenderRosester extends RenderLiving
|
|||
@Override
|
||||
protected ResourceLocation func_110775_a(Entity entity)
|
||||
{
|
||||
return new ResourceLocation("BiomesOPlenty:textures/mobs/rosester.png");
|
||||
return new ResourceLocation("biomesoplenty:textures/mobs/rosester.png");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,7 +44,7 @@ public class BOPCraftingItem extends Item
|
|||
|
||||
for (int i = 0; i < this.icons.length; ++i)
|
||||
{
|
||||
this.icons[i] = iconRegister.registerIcon("BiomesOPlenty:"+folder+textureNames[i]);
|
||||
this.icons[i] = iconRegister.registerIcon("biomesoplenty:"+folder+textureNames[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ public class BOPToolShard extends BOPToolPart
|
|||
|
||||
for (int i = 0; i < textureNames.length; ++i)
|
||||
{
|
||||
this.icons[i] = iconRegister.registerIcon("BiomesOPlenty:"+folder+textureNames[i]);
|
||||
this.icons[i] = iconRegister.registerIcon("biomesoplenty:"+folder+textureNames[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public class ItemBOP extends Item
|
|||
textures = new Icon[items.length];
|
||||
|
||||
for (int i = 0; i < items.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+items[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+items[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import net.minecraft.item.ItemStack;
|
|||
|
||||
public class ItemBOPAltar extends ItemBlock
|
||||
{
|
||||
private static final String[] altarTypes = new String[] {"altarFrame"};
|
||||
private static final String[] altarTypes = new String[] {"altarframe"};
|
||||
|
||||
public ItemBOPAltar(int par1)
|
||||
{
|
||||
|
|
|
@ -54,10 +54,10 @@ public class ItemBOPAncientStaff extends Item
|
|||
textures = new Icon[parts.length];
|
||||
|
||||
for (int i = 0; i < parts.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+parts[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+parts[i]);
|
||||
}
|
||||
|
||||
//textures[parts.length - 1] = iconRegister.registerIcon("BiomesOPlenty:ancientstaff");
|
||||
//textures[parts.length - 1] = iconRegister.registerIcon("biomesoplenty:ancientstaff");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -30,8 +30,8 @@ public class ItemBOPAxe extends ItemAxe
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudaxe"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystaxe"); }
|
||||
else { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball"); }
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("biomesoplenty:mudaxe"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("biomesoplenty:amethystaxe"); }
|
||||
else { itemIcon = iconRegister.registerIcon("biomesoplenty:mudball"); }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ public class ItemBOPBamboo extends ItemBlock
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:item_bamboo");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:item_bamboo");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -228,7 +228,7 @@ public class ItemBOPBucket extends Item
|
|||
textures = new Icon[bucketTypes.length];
|
||||
|
||||
for (int i = 0; i < bucketTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + "bucket_" + bucketTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + "bucket_" + bucketTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ public class ItemBOPFlower extends ItemBlock
|
|||
{
|
||||
textures = new Icon[1];
|
||||
|
||||
textures[0] = iconRegister.registerIcon("BiomesOPlenty:item_sunflower");
|
||||
textures[0] = iconRegister.registerIcon("biomesoplenty:item_sunflower");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -36,11 +36,11 @@ public class ItemBOPFoliage extends ItemColored
|
|||
textures = new Icon[foliageTypes.length];
|
||||
|
||||
for (int i = 0; i < foliageTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + foliageTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + foliageTypes[i]);
|
||||
}
|
||||
|
||||
textures[3] = iconRegister.registerIcon("BiomesOPlenty:item_highgrass");
|
||||
textures[8] = iconRegister.registerIcon("BiomesOPlenty:item_berrybush");
|
||||
textures[3] = iconRegister.registerIcon("biomesoplenty:item_highgrass");
|
||||
textures[8] = iconRegister.registerIcon("biomesoplenty:item_berrybush");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -5,7 +5,7 @@ import net.minecraft.item.ItemStack;
|
|||
|
||||
public class ItemBOPGlass extends ItemBlock
|
||||
{
|
||||
private static final String[] glassTypes = new String[] {"celestialLens", "sacrificialFocus_empty", "sacrificialFocus_active", "sacrificialFocus_villager"};
|
||||
private static final String[] glassTypes = new String[] {"celestialLens", "sacrificialfocus_empty", "sacrificialfocus_active", "sacrificialfocus_villager"};
|
||||
|
||||
public ItemBOPGlass(int par1)
|
||||
{
|
||||
|
|
|
@ -30,8 +30,8 @@ public class ItemBOPHoe extends ItemHoe
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudhoe"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethysthoe"); }
|
||||
else { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball"); }
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("biomesoplenty:mudhoe"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("biomesoplenty:amethysthoe"); }
|
||||
else { itemIcon = iconRegister.registerIcon("biomesoplenty:mudball"); }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@ public class ItemBOPIvy extends ItemColored
|
|||
@SideOnly(Side.CLIENT)
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:ivy");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:ivy");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -20,7 +20,7 @@ public class ItemBOPMoss extends ItemBlock
|
|||
@SideOnly(Side.CLIENT)
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:item_moss");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:item_moss");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -19,7 +19,7 @@ public class ItemBOPMudball extends Item
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:mudball");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -36,15 +36,15 @@ public class ItemBOPPickaxe extends ItemPickaxe
|
|||
{
|
||||
if (textureID == 0)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudpickaxe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:mudpickaxe");
|
||||
}
|
||||
else if (textureID == 1)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystpickaxe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:amethystpickaxe");
|
||||
}
|
||||
else
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:mudball");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,9 +36,9 @@ public class ItemBOPPlant extends ItemBlock
|
|||
{
|
||||
textures = new Icon[3];
|
||||
|
||||
textures[0] = iconRegister.registerIcon("BiomesOPlenty:item_barley");
|
||||
textures[1] = iconRegister.registerIcon("BiomesOPlenty:item_cattail");
|
||||
textures[2] = iconRegister.registerIcon("BiomesOPlenty:item_reed");
|
||||
textures[0] = iconRegister.registerIcon("biomesoplenty:item_barley");
|
||||
textures[1] = iconRegister.registerIcon("biomesoplenty:item_cattail");
|
||||
textures[2] = iconRegister.registerIcon("biomesoplenty:item_reed");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -38,7 +38,7 @@ public class ItemBOPRecord extends ItemRecord
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:boprecord");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:boprecord");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -39,7 +39,7 @@ public class ItemBOPRecordMud extends ItemRecord
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudrecord");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:mudrecord");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -299,35 +299,35 @@ public class ItemBOPScythe extends Item
|
|||
{
|
||||
if (textureID == 0)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:woodscythe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:woodscythe");
|
||||
}
|
||||
else if (textureID == 1)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:stonescythe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:stonescythe");
|
||||
}
|
||||
else if (textureID == 2)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:ironscythe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:ironscythe");
|
||||
}
|
||||
else if (textureID == 3)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:goldscythe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:goldscythe");
|
||||
}
|
||||
else if (textureID == 4)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:diamondscythe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:diamondscythe");
|
||||
}
|
||||
else if (textureID == 5)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudscythe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:mudscythe");
|
||||
}
|
||||
else if (textureID == 6)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystscythe");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:amethystscythe");
|
||||
}
|
||||
else
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:mudball");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,8 +30,8 @@ public class ItemBOPSpade extends ItemSpade
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudshovel"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystshovel"); }
|
||||
else { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball"); }
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("biomesoplenty:mudshovel"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("biomesoplenty:amethystshovel"); }
|
||||
else { itemIcon = iconRegister.registerIcon("biomesoplenty:mudball"); }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,8 +30,8 @@ public class ItemBOPSword extends ItemSword
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudsword"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("BiomesOPlenty:amethystsword"); }
|
||||
else { itemIcon = iconRegister.registerIcon("BiomesOPlenty:mudball"); }
|
||||
if(TextureID==0){ itemIcon = iconRegister.registerIcon("biomesoplenty:mudsword"); }
|
||||
else if(TextureID==1){ itemIcon = iconRegister.registerIcon("biomesoplenty:amethystsword"); }
|
||||
else { itemIcon = iconRegister.registerIcon("biomesoplenty:mudball"); }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@ public class ItemBOPWillow extends ItemColored
|
|||
@SideOnly(Side.CLIENT)
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
texture = iconRegister.registerIcon("BiomesOPlenty:willow");
|
||||
texture = iconRegister.registerIcon("biomesoplenty:willow");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -16,6 +16,6 @@ public class ItemBerries extends ItemFood
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:berries");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:berries");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ public class ItemDart extends Item
|
|||
textures = new Icon[dartTypes.length];
|
||||
|
||||
for (int i = 0; i < dartTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:" + dartTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:" + dartTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ public class ItemDartBlower extends Item
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:dartblower");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:dartblower");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -23,7 +23,7 @@ public class ItemEnderporter extends Item
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:enderporter");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:enderporter");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -18,6 +18,6 @@ public class ItemShroomPowder extends ItemFood
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:shroompowder");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:shroompowder");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ public class ItemSoulManipulator extends Item
|
|||
textures = new Icon[manipulatorTypes.length];
|
||||
|
||||
for (int i = 0; i < manipulatorTypes.length; ++i) {
|
||||
textures[i] = iconRegister.registerIcon("BiomesOPlenty:"+manipulatorTypes[i]);
|
||||
textures[i] = iconRegister.registerIcon("biomesoplenty:"+manipulatorTypes[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,6 @@ public class ItemSunflowerSeeds extends ItemFood
|
|||
@Override
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
itemIcon = iconRegister.registerIcon("BiomesOPlenty:sunflowerseeds");
|
||||
itemIcon = iconRegister.registerIcon("biomesoplenty:sunflowerseeds");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -87,9 +87,9 @@ public class RenderDart extends Render
|
|||
{
|
||||
if (((EntityDart)entity).isPoisonous())
|
||||
{
|
||||
return new ResourceLocation("BiomesOPlenty:textures/projectiles/poisondart.png");
|
||||
return new ResourceLocation("biomesoplenty:textures/projectiles/poisondart.png");
|
||||
}
|
||||
|
||||
return new ResourceLocation("BiomesOPlenty:textures/projectiles/dart.png");
|
||||
return new ResourceLocation("biomesoplenty:textures/projectiles/dart.png");
|
||||
}
|
||||
}
|
|
@ -69,8 +69,8 @@ public class BlockFluidLiquidPoison extends BlockFluidClassic implements ILiquid
|
|||
@SideOnly(Side.CLIENT)
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
liquidPoisonStillIcon = iconRegister.registerIcon("BiomesOPlenty:liquid_poison_still");
|
||||
liquidPoisonFlowingIcon = iconRegister.registerIcon("BiomesOPlenty:liquid_poison_flowing");
|
||||
liquidPoisonStillIcon = iconRegister.registerIcon("biomesoplenty:liquid_poison_still");
|
||||
liquidPoisonFlowingIcon = iconRegister.registerIcon("biomesoplenty:liquid_poison_flowing");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -96,8 +96,8 @@ public class BlockFluidSpringWater extends BlockFluidClassic implements ILiquid
|
|||
@SideOnly(Side.CLIENT)
|
||||
public void registerIcons(IconRegister iconRegister)
|
||||
{
|
||||
springWaterStillIcon = iconRegister.registerIcon("BiomesOPlenty:spring_water_still");
|
||||
springWaterFlowingIcon = iconRegister.registerIcon("BiomesOPlenty:spring_water_flowing");
|
||||
springWaterStillIcon = iconRegister.registerIcon("biomesoplenty:spring_water_still");
|
||||
springWaterFlowingIcon = iconRegister.registerIcon("biomesoplenty:spring_water_flowing");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -11,7 +11,7 @@ import cpw.mods.fml.client.FMLClientHandler;
|
|||
|
||||
public class EntityDandelionFX extends EntityFX
|
||||
{
|
||||
private static final String texture = "/mods/BiomesOPlenty/textures/particles/dandelion.png";
|
||||
private static final String texture = "biomesoplenty:textures/particles/dandelion.png";
|
||||
|
||||
public EntityDandelionFX(World par1World, double par2, double par4, double par6, float par8)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@ import cpw.mods.fml.client.FMLClientHandler;
|
|||
|
||||
public class EntitySteamFX extends EntityFX
|
||||
{
|
||||
private static final String texture = "BiomesOPlenty:textures/particles/steam.png";
|
||||
private static final String texture = "biomesoplenty:textures/particles/steam.png";
|
||||
|
||||
public EntitySteamFX(World par1World, double par2, double par4, double par6, double par8, double par10, double par12)
|
||||
{
|
||||
|
|
|
@ -18,7 +18,7 @@ public class PotionNourishment extends Potion
|
|||
@SideOnly(Side.CLIENT)
|
||||
public int getStatusIconIndex()
|
||||
{
|
||||
Minecraft.getMinecraft().renderEngine.func_110577_a(new ResourceLocation("BiomesOPlenty:textures/potions/BOPPotionFX.png"));
|
||||
Minecraft.getMinecraft().renderEngine.func_110577_a(new ResourceLocation("biomesoplenty:textures/potions/BOPPotionFX.png"));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ public class PotionParalysis extends Potion
|
|||
@SideOnly(Side.CLIENT)
|
||||
public int getStatusIconIndex()
|
||||
{
|
||||
Minecraft.getMinecraft().renderEngine.func_110577_a(new ResourceLocation("/mods/BiomesOPlenty/textures/potions/BOPPotionFX.png"));
|
||||
Minecraft.getMinecraft().renderEngine.func_110577_a(new ResourceLocation("biomesoplenty:textures/potions/BOPPotionFX.png"));
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue