You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +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:
@@ -605,7 +605,7 @@ COMMAND_1(free, RID, p_object) {
|
|||||||
memdelete(agent);
|
memdelete(agent);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
ERR_FAIL_COND("RID not found by NavigationServer.");
|
ERR_PRINT("Attempted to free a NavigationServer RID that did not exist (or was already freed).");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user