fix: typo in function name

This commit is contained in:
jeefo 2024-03-12 09:36:32 +03:00
commit 99aac1b2ee
No known key found for this signature in database
GPG key ID: 927BCA0779BEA8ED
3 changed files with 3 additions and 3 deletions

View file

@ -2911,7 +2911,7 @@ bool Bot::isDeadlyMove (const Vector &to) {
return false;
}
bool Bot::isSafeToMove (const Vector &to) {
bool Bot::isNotSafeToMove (const Vector &to) {
// simplified version of isDeadlyMove() just for combat movement checking
constexpr auto kUnitsDown = 1000.0f;