diff options
Diffstat (limited to '')
-rw-r--r-- | src/BrewingRecipes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/BrewingRecipes.h b/src/BrewingRecipes.h index 82fb0b822..f42384896 100644 --- a/src/BrewingRecipes.h +++ b/src/BrewingRecipes.h @@ -39,7 +39,10 @@ public: bool IsIngredient(const cItem & a_Ingredient) const; /** Returns true if the item is a bottle / potion, false if not. */ - bool IsBottle(const cItem & a_Bottle) const; + bool IsBottle(const cItem & a_Item) const; + + /** Returns true if the item is the fuel, false if not. */ + bool IsFuel(const cItem & a_Item) const; private: void ClearRecipes(void); |