public boolean canConsume() {
    if (this.isActive() && !this.isInversed) {
      return FortronHelper.getAmount(this.fortronTank) < this.fortronTank.getCapacity();
    }

    return false;
  }