@Override
  public void updateEntity() {
    if (this.worldObj.isRemote) {
      this.rot += 0.1F;
      if (this.rot >= 360F) this.rot -= 360F;
    }

    super.updateEntity();
  }