remove debug log and better hash operator

This commit is contained in:
Bluub
2021-06-19 20:08:56 +02:00
parent 6e7e0133c3
commit 6342c6bce7
3 changed files with 19 additions and 20 deletions
-7
View File
@@ -370,14 +370,7 @@ namespace BBM
break;
newDangerMap[pos.y][pos.x] = 3;
}
for (int i = 0; i < 17; i++) {
for (int j = 0; j < 17; j++) {
std::cout << newDangerMap[i][j] << " | ";
}
std::cout << std::endl;
}
Vector2f res = map->findSafeSpace(newDangerMap);
std::cout << "res: " << res << std::endl;
lua_pushboolean(L, map->_roundedPlayer != res);
return 1;
}