Fix an issue where brewing stands will consume two fuel units for vanilla ingredients.

This commit is contained in:
Jacob Martin 2016-11-13 10:26:29 -06:00
parent a51585f5d0
commit 6388246418

View File

@ -52,8 +52,11 @@ public class AlchemyBrewTask extends BukkitRunnable {
if (Alchemy.brewingStandMap.containsKey(location)) {
Alchemy.brewingStandMap.get(location).cancel();
}
fuel = ((BrewingStand) brewingStand).getFuelLevel() - 1;
fuel = ((BrewingStand) brewingStand).getFuelLevel();
if (((BrewingStand) brewingStand).getBrewingTime() == -1) // Only decrement on our end if it isn't a vanilla ingredient.
fuel--;
Alchemy.brewingStandMap.put(location, this);
this.runTaskTimer(mcMMO.p, 1, 1);