added isActive to the crafter

This commit is contained in:
modmuss50 2015-05-21 21:27:16 +01:00
parent 9eb7735c10
commit 74e16510aa
3 changed files with 6 additions and 2 deletions

View file

@ -234,4 +234,8 @@ public class RecipeCrafter {
tag.setTag("Crater", data);
}
public boolean isActive(){
return currentRecipe != null && currentTickTime != 0;
}
}