Backported from godot4: Fix NavigationServer free error print

Fixes error print for NavigationServer free when a RID can not be found.
- smix8
73dc680fc1
This commit is contained in:
Relintai 2023-09-02 12:58:49 +02:00
parent 8467cf9e94
commit c55f0b4520

View File

@ -1001,7 +1001,7 @@ COMMAND_1(free, RID, p_object) {
obstacle_owner.free(p_object);
} else {
ERR_FAIL_COND("Invalid RID.");
ERR_PRINT("Invalid RID.");
}
}