diff options
author | Samuel Barney <samjbarney@gmail.com> | 2015-07-14 02:15:37 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2015-07-15 22:05:36 +0200 |
commit | 561296f2699bcfff93d22b8a67182308998cfb31 (patch) | |
tree | 7e0c13beb4b3933923d57c5755b82c76da1a9db9 /src/CraftingRecipes.h | |
parent | Merge pull request #2347 from SamJBarney/ClampFix (diff) | |
download | cuberite-561296f2699bcfff93d22b8a67182308998cfb31.tar cuberite-561296f2699bcfff93d22b8a67182308998cfb31.tar.gz cuberite-561296f2699bcfff93d22b8a67182308998cfb31.tar.bz2 cuberite-561296f2699bcfff93d22b8a67182308998cfb31.tar.lz cuberite-561296f2699bcfff93d22b8a67182308998cfb31.tar.xz cuberite-561296f2699bcfff93d22b8a67182308998cfb31.tar.zst cuberite-561296f2699bcfff93d22b8a67182308998cfb31.zip |
Diffstat (limited to '')
-rw-r--r-- | src/CraftingRecipes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CraftingRecipes.h b/src/CraftingRecipes.h index 44444d42e..778dd495a 100644 --- a/src/CraftingRecipes.h +++ b/src/CraftingRecipes.h @@ -168,6 +168,9 @@ protected: /** Searches for anything firework related, and does the data setting if appropriate */ void HandleFireworks(const cItem * a_CraftingGrid, cCraftingRecipes::cRecipe * a_Recipe, int a_GridStride, int a_OffsetX, int a_OffsetY); + + /// Searches for anything dye related for leather, calculates the appropriate color value, and sets the resulting value. + void HandleDyedLeather(const cItem * a_CraftingGrid, cCraftingRecipes::cRecipe * a_Recipe, int a_GridStride, int a_GridWidth, int a_GridHeight); } ; |