Code cleanup
This commit is contained in:
parent
d292c5e8f5
commit
5f71714993
1 changed files with 15 additions and 15 deletions
|
@ -16,7 +16,7 @@ import cr0s.warpdrive.WarpDrive;
|
|||
|
||||
public class BlockCloakingCore extends BlockContainer {
|
||||
private IIcon[] iconBuffer;
|
||||
|
||||
|
||||
public BlockCloakingCore() {
|
||||
super(Material.rock);
|
||||
setHardness(0.5F);
|
||||
|
@ -24,28 +24,28 @@ public class BlockCloakingCore extends BlockContainer {
|
|||
setCreativeTab(WarpDrive.creativeTabWarpDrive);
|
||||
this.setBlockName("warpdrive.detection.CloakingCore");
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void registerBlockIcons(IIconRegister par1IconRegister) {
|
||||
iconBuffer = new IIcon[2];
|
||||
iconBuffer[0] = par1IconRegister.registerIcon("warpdrive:detection/cloakingCoreInactive");
|
||||
iconBuffer[1] = par1IconRegister.registerIcon("warpdrive:detection/cloakingCoreActive");
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public IIcon getIcon(int side, int metadata) {
|
||||
if (metadata < iconBuffer.length) {
|
||||
return iconBuffer[metadata];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public TileEntity createNewTileEntity(World var1, int i) {
|
||||
return new TileEntityCloakingCore();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns the quantity of items to drop on block destruction.
|
||||
*/
|
||||
|
@ -53,21 +53,21 @@ public class BlockCloakingCore extends BlockContainer {
|
|||
public int quantityDropped(Random par1Random) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns the ID of the items to drop on destruction.
|
||||
* Returns the item to drop on destruction.
|
||||
*/
|
||||
@Override
|
||||
public Item getItemDropped(int par1, Random par2Random, int par3) {
|
||||
return Item.getItemFromBlock(this);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean onBlockActivated(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9) {
|
||||
if (FMLCommonHandler.instance().getEffectiveSide().isClient()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
TileEntityCloakingCore tileEntity = (TileEntityCloakingCore)par1World.getTileEntity(par2, par3, par4);
|
||||
if (tileEntity != null && (par5EntityPlayer.getHeldItem() == null)) {
|
||||
WarpDrive.addChatMessage(par5EntityPlayer, tileEntity.getStatus()
|
||||
|
@ -77,19 +77,19 @@ public class BlockCloakingCore extends BlockContainer {
|
|||
((tileEntity.isCloaking) ? "\nA tier " + tileEntity.tier + " cloak is currently covering " + tileEntity.volume + " blocks!" : "\nCloak needs more power!"))));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void breakBlock(World par1World, int par2, int par3, int par4, Block par5, int par6) {
|
||||
TileEntity te = par1World.getTileEntity(par2, par3, par4);
|
||||
|
||||
|
||||
if (te != null && te instanceof TileEntityCloakingCore) {
|
||||
((TileEntityCloakingCore)te).isEnabled = false;
|
||||
((TileEntityCloakingCore)te).disableCloakingField();
|
||||
}
|
||||
|
||||
|
||||
super.breakBlock(par1World, par2, par3, par4, par5, par6);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue