浏览代码

Little refactoring for object placement.

DjWarmonger 9 年之前
父节点
当前提交
8c5f93dd8f
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      lib/rmg/CMapGenerator.cpp

+ 2 - 0
lib/rmg/CMapGenerator.cpp

@@ -20,6 +20,8 @@ void CMapGenerator::foreach_neighbour(const int3 &pos, std::function<void(int3&
 	for(const int3 &dir : int3::getDirs())
 	{
 		int3 n = pos + dir;
+		/*important notice: perform any translation before this function is called,
+		so the actual map position is checked*/
 		if(map->isInTheMap(n))
 			foo(n);
 	}