aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Recipes.cpp
diff options
context:
space:
mode:
authorVivyaCC <21315274+enginelesscc@users.noreply.github.com>2026-03-06 23:13:30 +0100
committervoid_17 <heroerror3@gmail.com>2026-03-07 23:58:21 +0700
commit6dfdd9032892f933a2cd23470ccd03149d114811 (patch)
tree21db394ccd0a003c1dbc255072a4d3c869990bb3 /Minecraft.World/Recipes.cpp
parent7c2869c5b9825ea87b4e2a65c6337f09e84b3cdb (diff)
win cpp23 compat: Minecraft.World
Diffstat (limited to 'Minecraft.World/Recipes.cpp')
-rw-r--r--Minecraft.World/Recipes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/Recipes.cpp b/Minecraft.World/Recipes.cpp
index ef2cd7fd..ce026359 100644
--- a/Minecraft.World/Recipes.cpp
+++ b/Minecraft.World/Recipes.cpp
@@ -1312,7 +1312,7 @@ void Recipes::buildRecipeIngredientsArray(void)
int iCount=0;
for (auto& recipe : *recipies)
{
- recipe->requires(&m_pRecipeIngredientsRequired[iCount++]);
+ recipe->reqs(&m_pRecipeIngredientsRequired[iCount++]);
}
//printf("Total recipes in buildRecipeIngredientsArray - %d",iCount);