Explorar o código

Fix NavigationServer free error print

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

(cherry picked from commit 73dc680fc127014ad805e5968f98ebb3e0281de7)
smix8 %!s(int64=2) %!d(string=hai) anos
pai
achega
069c48bfdc
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      modules/navigation/godot_navigation_server.cpp

+ 1 - 1
modules/navigation/godot_navigation_server.cpp

@@ -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).");
 	}
 }