diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-04 14:08:20 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-04 14:08:20 +0200 |
commit | b355bdeccecf727d30e48634df9b5d424db570bc (patch) | |
tree | 00489a1317e6ad22a28698f24bd9935160257789 /source/cRecipeChecker.cpp | |
parent | Fixed MSVC2010 projects for new zlib (diff) | |
download | cuberite-b355bdeccecf727d30e48634df9b5d424db570bc.tar cuberite-b355bdeccecf727d30e48634df9b5d424db570bc.tar.gz cuberite-b355bdeccecf727d30e48634df9b5d424db570bc.tar.bz2 cuberite-b355bdeccecf727d30e48634df9b5d424db570bc.tar.lz cuberite-b355bdeccecf727d30e48634df9b5d424db570bc.tar.xz cuberite-b355bdeccecf727d30e48634df9b5d424db570bc.tar.zst cuberite-b355bdeccecf727d30e48634df9b5d424db570bc.zip |
Diffstat (limited to 'source/cRecipeChecker.cpp')
-rw-r--r-- | source/cRecipeChecker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cRecipeChecker.cpp b/source/cRecipeChecker.cpp index 7db1f9643..2052ba97d 100644 --- a/source/cRecipeChecker.cpp +++ b/source/cRecipeChecker.cpp @@ -125,7 +125,7 @@ void PrintNear( std::ifstream & f, int a_History = 64 ) void cRecipeChecker::ReloadRecipes()
{
- LOG("--Loading recipes--");
+ LOG("-- Loading recipes from recipes.txt --");
ClearRecipes();
std::ifstream f;
@@ -369,7 +369,7 @@ void cRecipeChecker::ReloadRecipes() }
f.close();
- LOG("--Done loading recipes, found %i recipes", m_pState->Recipes.size() );
+ LOG("-- Done loading recipes, found %i recipes --", m_pState->Recipes.size() );
}
|