1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-05 17:15:09 +00:00

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 Yuri Sizov
parent 75e078d885
commit 069c48bfdc

View File

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