Changed formatting to have bracing on a new line

This commit is contained in:
WayofTime 2015-12-30 15:34:40 -05:00
parent e5eddd6c45
commit e48eedb874
189 changed files with 6092 additions and 4041 deletions

View file

@ -5,35 +5,42 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ITickable;
public class TilePhantomBlock extends TileEntity implements ITickable {
public class TilePhantomBlock extends TileEntity implements ITickable
{
private int ticksRemaining;
public TilePhantomBlock() {
public TilePhantomBlock()
{
}
@Override
public void readFromNBT(NBTTagCompound tagCompound) {
public void readFromNBT(NBTTagCompound tagCompound)
{
super.readFromNBT(tagCompound);
ticksRemaining = tagCompound.getInteger(Constants.NBT.TICKS_REMAINING);
}
@Override
public void writeToNBT(NBTTagCompound tagCompound) {
public void writeToNBT(NBTTagCompound tagCompound)
{
super.writeToNBT(tagCompound);
tagCompound.setInteger(Constants.NBT.TICKS_REMAINING, ticksRemaining);
}
@Override
public void update() {
public void update()
{
ticksRemaining--;
if (ticksRemaining <= 0) {
if (ticksRemaining <= 0)
{
worldObj.setBlockToAir(pos);
}
}
public void setDuration(int duration) {
public void setDuration(int duration)
{
ticksRemaining = duration;
}
}