diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-06-03 15:47:18 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-06-03 15:47:18 +1000 |
commit | 5d1e85b24154dea8ccf0fc98e54a5c0cbf32453c (patch) | |
tree | fa9bf4dbe72f0244bcdac361ef44060f421a7971 /source/game/StarItemDatabase.cpp | |
parent | add17da988f4518c451abc4d0bacf536071e1c0b (diff) |
player.availableRecipes and root.allRecipes
Diffstat (limited to 'source/game/StarItemDatabase.cpp')
-rw-r--r-- | source/game/StarItemDatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarItemDatabase.cpp b/source/game/StarItemDatabase.cpp index c3f2447..b3eb16b 100644 --- a/source/game/StarItemDatabase.cpp +++ b/source/game/StarItemDatabase.cpp @@ -375,7 +375,7 @@ ItemRecipe ItemDatabase::parseRecipe(Json const& config) const { return res; } -HashSet<ItemRecipe> ItemDatabase::allRecipes() const { +HashSet<ItemRecipe> const& ItemDatabase::allRecipes() const { return m_recipes; } |