Update InfusionRitual.java

This commit is contained in:
Aleksey 2020-11-10 20:59:09 +03:00
parent 1a412d08e3
commit ea4b9b726b

View file

@ -94,7 +94,10 @@ public class InfusionRitual implements Inventory {
} }
public void tick() { public void tick() {
if (isDirty) this.configure(); if (isDirty) {
this.configure();
this.isDirty = false;
}
if (!isValid() || !hasRecipe()) return; if (!isValid() || !hasRecipe()) return;
if (!checkRecipe()) return; if (!checkRecipe()) return;
this.progress++; this.progress++;