Revert "Fixed all the tools being swords, fixed the duplicate messages on creation of the Promised Lands portal as well as fancying it up :) Also fixed a bug where you could get an endless supply of endstone by recreating the portal."
This reverts commit 1223145994
.
This commit is contained in:
parent
1223145994
commit
9f8c33526e
5 changed files with 113 additions and 125 deletions
|
@ -36,14 +36,7 @@ public class ItemAncientStaff extends Item
|
|||
{
|
||||
if (par3EntityPlayer.dimension == 0)
|
||||
{
|
||||
|
||||
if (par2World.getBlockId(0, 64 - 32, 0) != mod_BiomesOPlenty.promisedPortal.blockID)
|
||||
{
|
||||
|
||||
if (!par3EntityPlayer.worldObj.isRemote)
|
||||
{
|
||||
par3EntityPlayer.addChatMessage("\u00a75A gateway to the \u00a76\u00a7l\u00a7nPromised Land\u00a75 has been buried at the origin of this world.");
|
||||
}
|
||||
par3EntityPlayer.addChatMessage("A gateway to the Promised Land has been buried at the origin of this world.");
|
||||
|
||||
int var99 = 32;
|
||||
|
||||
|
@ -152,7 +145,6 @@ public class ItemAncientStaff extends Item
|
|||
par2World.setBlock(2, 66 - var99, -2, 0);
|
||||
par2World.setBlock(-2, 66 - var99, -2, 0);
|
||||
}
|
||||
}
|
||||
|
||||
return par1ItemStack;
|
||||
}
|
||||
|
|
|
@ -2,10 +2,9 @@ package tdwp_ftw.biomesop.items;
|
|||
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemAxe;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
public class ItemBOPAxe extends ItemAxe
|
||||
public class ItemBOPAxe extends ItemSword
|
||||
{
|
||||
public int TextureID = 0;
|
||||
|
||||
|
|
|
@ -2,10 +2,9 @@ package tdwp_ftw.biomesop.items;
|
|||
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemHoe;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
public class ItemBOPHoe extends ItemHoe
|
||||
public class ItemBOPHoe extends ItemSword
|
||||
{
|
||||
public int TextureID = 0;
|
||||
|
||||
|
|
|
@ -2,10 +2,9 @@ package tdwp_ftw.biomesop.items;
|
|||
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemPickaxe;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
public class ItemBOPPickaxe extends ItemPickaxe
|
||||
public class ItemBOPPickaxe extends ItemSword
|
||||
{
|
||||
public int TextureID = 0;
|
||||
|
||||
|
|
|
@ -2,10 +2,9 @@ package tdwp_ftw.biomesop.items;
|
|||
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemSpade;
|
||||
import net.minecraft.item.ItemSword;
|
||||
|
||||
public class ItemBOPSpade extends ItemSpade
|
||||
public class ItemBOPSpade extends ItemSword
|
||||
{
|
||||
public int TextureID = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue