Fix NavigationServer free error print

Fixes error print for NavigationServer free when a RID can not be found.

(cherry picked from commit 73dc680fc1)
This commit is contained in:
smix8 2023-03-05 14:11:35 +01:00 committed by Rémi Verschelde
parent dfb898094a
commit d8a64adf24
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -601,7 +601,7 @@ COMMAND_1(free, RID, p_object) {
memdelete(agent);
} else {
ERR_FAIL_COND("Invalid ID.");
ERR_PRINT("Attempted to free a NavigationServer RID that did not exist (or was already freed).");
}
}