diff options
Diffstat (limited to 'src/BlockEntities/BrewingstandEntity.h')
-rw-r--r-- | src/BlockEntities/BrewingstandEntity.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/BlockEntities/BrewingstandEntity.h b/src/BlockEntities/BrewingstandEntity.h index 90c6003df..5a78554ba 100644 --- a/src/BlockEntities/BrewingstandEntity.h +++ b/src/BlockEntities/BrewingstandEntity.h @@ -81,7 +81,7 @@ public: const cItem & GetFuelSlot(void) const { return GetSlot(bsFuel); } /** Get the expected result item for the given slot number */ - const cItem & GetResultItem(int a_SlotNumber) { return m_Results[a_SlotNumber]; } + const cItem & GetResultItem(size_t a_SlotNumber) { return m_Results[a_SlotNumber]; } /** Sets the item in the left bottle slot */ void SetLeftBottleSlot(const cItem & a_Item) { SetSlot(bsLeftBottle, a_Item); } @@ -125,10 +125,10 @@ protected: const short m_NeedBrewingTime = 400; /** Store the current brewing recipes */ - const cBrewingRecipes::cRecipe * m_CurrentBrewingRecipes[3] = {}; + std::array<const cBrewingRecipes::cRecipe *, 3> m_CurrentBrewingRecipes = {}; /** Result items for the bottle inputs */ - cItem m_Results[3]; + std::array<cItem, 3> m_Results; /** Amount of ticks that the current item has been brewed */ short m_TimeBrewed; |