mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Made the Scuba Helmet recharge when not in Armor Slot
This commit is contained in:
parent
d4962ddb66
commit
ac46458220
2 changed files with 23 additions and 8 deletions
|
@ -42,7 +42,7 @@ public class ItemArmorAA extends ItemArmor implements INameableItem{
|
|||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
||||
ItemUtil.addInformation(this, list, 1, "");
|
||||
}
|
||||
|
||||
|
|
|
@ -3,9 +3,9 @@ package ellpeck.actuallyadditions.items;
|
|||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import ellpeck.actuallyadditions.material.InitArmorMaterials;
|
||||
import ellpeck.actuallyadditions.util.ItemUtil;
|
||||
import ellpeck.actuallyadditions.util.KeyUtil;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
|
@ -29,19 +29,34 @@ public class ItemScubaArmor extends ItemArmorAA{
|
|||
NBTTagCompound compound = armor.getTagCompound();
|
||||
if(compound == null) compound = new NBTTagCompound();
|
||||
|
||||
int time = compound.getInteger("waitTime");
|
||||
if(player.isInsideOfMaterial(Material.water)){
|
||||
int time = compound.getInteger("waitTime");
|
||||
if(time < helmetTime){
|
||||
compound.setInteger("waitTime", time+1);
|
||||
player.setAir(300);
|
||||
}
|
||||
}
|
||||
else{
|
||||
this.addAir(compound);
|
||||
}
|
||||
armor.setTagCompound(compound);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void addAir(NBTTagCompound compound){
|
||||
int time = compound.getInteger("waitTime");
|
||||
if(time > 0){
|
||||
compound.setInteger("waitTime", time < helmetTimeDecreaseInAir ? 0 : time-helmetTimeDecreaseInAir);
|
||||
}
|
||||
}
|
||||
armor.setTagCompound(compound);
|
||||
|
||||
@Override
|
||||
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
|
||||
if(!entity.isInsideOfMaterial(Material.water)){
|
||||
NBTTagCompound compound = stack.getTagCompound();
|
||||
if(compound != null){
|
||||
this.addAir(compound);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -49,8 +64,8 @@ public class ItemScubaArmor extends ItemArmorAA{
|
|||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
|
||||
ItemUtil.addInformation(this, list, 1, "");
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
||||
super.addInformation(stack, player, list, isHeld);
|
||||
if(KeyUtil.isShiftPressed() && stack.getItem() == InitItems.itemScubaHelm){
|
||||
NBTTagCompound compound = stack.getTagCompound();
|
||||
//TODO Localize
|
||||
|
|
Loading…
Reference in a new issue