diff options
author | Mattes D <github@xoft.cz> | 2015-03-11 14:26:04 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-03-11 14:26:04 +0100 |
commit | 1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0 (patch) | |
tree | 961b0a521e31ba4f0a1b3516b49173c723ae24bd /src/FurnaceRecipe.h | |
parent | Merge pull request #1805 from mc-server/chunkDataFix (diff) | |
parent | Moved window code into cpp files (diff) | |
download | cuberite-1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0.tar cuberite-1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0.tar.gz cuberite-1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0.tar.bz2 cuberite-1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0.tar.lz cuberite-1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0.tar.xz cuberite-1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0.tar.zst cuberite-1b60fe12a859287d1fc9f923fb2c85e30e7f9ad0.zip |
Diffstat (limited to 'src/FurnaceRecipe.h')
-rw-r--r-- | src/FurnaceRecipe.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/FurnaceRecipe.h b/src/FurnaceRecipe.h index 936ef706d..912b6aba2 100644 --- a/src/FurnaceRecipe.h +++ b/src/FurnaceRecipe.h @@ -34,6 +34,9 @@ public: /** Returns a recipe for the specified input, nullptr if no recipe found */ const cRecipe * GetRecipeFrom(const cItem & a_Ingredient) const; + + /** Returns true if the item is a fuel, false if not. */ + bool IsFuel(const cItem & a_Item) const; /** Returns the amount of time that the specified fuel burns, in ticks */ int GetBurnTime(const cItem & a_Fuel) const; |