Fix log message in tooldef.cpp

This commit is contained in:
Perttu Ahola 2011-12-04 00:35:08 +02:00
parent 6764365994
commit 8730dfb1f9

@ -139,7 +139,7 @@ public:
bool alias_removed = (m_aliases.erase(toolname) != 0); bool alias_removed = (m_aliases.erase(toolname) != 0);
if(alias_removed) if(alias_removed)
infostream<<"tdef: erased alias "<<toolname infostream<<"tdef: erased alias "<<toolname
<<" because node was defined"<<std::endl; <<" because tool was defined"<<std::endl;
return true; return true;
} }