public void updateCraftingResults() {
    super.updateCraftingResults();

    for (int var1 = 0; var1 < this.crafters.size(); ++var1) {
      ICrafting var2 = (ICrafting) this.crafters.get(var1);
      if (this.brewTime != this.tileBrewingStand.getBrewTime()) {
        var2.updateCraftingInventoryInfo(this, 0, this.tileBrewingStand.getBrewTime());
      }
    }

    this.brewTime = this.tileBrewingStand.getBrewTime();
  }
 /** Updates crafting matrix; called from onCraftMatrixChanged. Args: none */
 public void updateCraftingResults() {
   super.updateCraftingResults();
 }