summaryrefslogtreecommitdiffstats
path: root/source/cRecipeChecker.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cRecipeChecker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cRecipeChecker.cpp b/source/cRecipeChecker.cpp
index d85cb3c31..53a55b08b 100644
--- a/source/cRecipeChecker.cpp
+++ b/source/cRecipeChecker.cpp
@@ -195,7 +195,7 @@ void cRecipeChecker::ReloadRecipes()
if( c == '@' ) bLoadResult = true;
if( c != ',' ) bLoadSlot = false;
- if( !isValidItem( ItemID ) )
+ if( !IsValidItem( ItemID ) )
{
LOGERROR("Error in recipes file (%s): Invalid Item ID %i", a_File, ItemID );
bDontAddRecipe = true;
@@ -307,7 +307,7 @@ void cRecipeChecker::ReloadRecipes()
f >> c; if( c != ':' ) { bError=true; break; }
f >> Amount;
//LOG("%i %i", ItemID, Amount );
- if( !isValidItem( ItemID ) )
+ if( !IsValidItem( ItemID ) )
{
LOGERROR("Error in recipes file (%s): Invalid Item ID %i", a_File, ItemID );
bDontAddRecipe = true;