From 9a4d1e95ea7784f0f98ea2913701a3a3c28aefaa Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Thu, 24 May 2018 16:03:42 -0400 Subject: Formatting pass --- .../jewelrycraft/tileentity/TileEntityDisplayer.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/main/java/darkknight/jewelrycraft/tileentity/TileEntityDisplayer.java') diff --git a/src/main/java/darkknight/jewelrycraft/tileentity/TileEntityDisplayer.java b/src/main/java/darkknight/jewelrycraft/tileentity/TileEntityDisplayer.java index a0c2600..72fa7c0 100755 --- a/src/main/java/darkknight/jewelrycraft/tileentity/TileEntityDisplayer.java +++ b/src/main/java/darkknight/jewelrycraft/tileentity/TileEntityDisplayer.java @@ -11,10 +11,10 @@ import net.minecraft.tileentity.TileEntity; public class TileEntityDisplayer extends TileEntity { public float ringTranslation1, ringTranslation2, ringTranslation3, rotAngle; - public boolean isDescending1, isDescending2, isDescending3, - isDirty, hasObject; + public boolean isDescending1, isDescending2, + isDescending3, isDirty, hasObject; public ItemStack object; - public int quantity, infoIndex, timer = 0; + public int quantity, infoIndex, timer = 0; /** * @@ -82,7 +82,8 @@ public class TileEntityDisplayer extends TileEntity { public void updateEntity() { super.updateEntity(); if (isDirty) { - worldObj.markBlockForUpdate(xCoord, yCoord, zCoord); + worldObj.markBlockForUpdate(xCoord, yCoord, + zCoord); isDirty = false; } if (ringTranslation1 >= 0.6) @@ -127,8 +128,8 @@ public class TileEntityDisplayer extends TileEntity { public Packet getDescriptionPacket() { NBTTagCompound nbttagcompound = new NBTTagCompound(); writeToNBT(nbttagcompound); - return new S35PacketUpdateTileEntity(xCoord, yCoord, zCoord, 1, - nbttagcompound); + return new S35PacketUpdateTileEntity(xCoord, yCoord, + zCoord, 1, nbttagcompound); } /** -- cgit v1.2.3