1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Don't write control character to verbosestream

This commit is contained in:
kwolekr 2013-01-29 11:44:09 -05:00
parent 77dbad72f7
commit bd55b9cc0f

View file

@ -127,7 +127,7 @@ void BiomeDefManager::addBiome(Biome *b) {
bgroup->push_back(b);
verbosestream << "BiomeDefManager: added biome '" << b->name <<
"' to biome group " << b->groupid << std::endl;
"' to biome group " << (int)b->groupid << std::endl;
}