Skip to content

Commit

Permalink
Fix NavigationServer free error print
Browse files Browse the repository at this point in the history
Fixes error print for NavigationServer free when a RID can not be found.
  • Loading branch information
smix8 committed Mar 5, 2023
1 parent 61d2c85 commit 73dc680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/navigation/godot_navigation_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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).");
}
}

Expand Down

0 comments on commit 73dc680

Please sign in to comment.