From cd030639a45fd58015256b125e5a646fb378683b Mon Sep 17 00:00:00 2001
From: Perttu Ahola <celeron55@gmail.com>
Date: Tue, 29 Nov 2011 21:05:36 +0200
Subject: [PATCH] Print debug stacks to infostream rather than errorstream when
 placing CONTENT_IGNORE

---
 src/map.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/map.cpp b/src/map.cpp
index 0f50a1ef4..8bdc2ad4c 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -214,7 +214,7 @@ void Map::setNode(v3s16 p, MapNode & n)
 				<<" while trying to replace \""
 				<<m_gamedef->ndef()->get(block->getNodeNoCheck(relpos)).name
 				<<"\" at "<<PP(p)<<" (block "<<PP(blockpos)<<")"<<std::endl;
-		debug_stacks_print_to(errorstream);
+		debug_stacks_print_to(infostream);
 		return;
 	}
 	block->setNodeNoCheck(relpos, n);
-- 
GitLab