1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Partially revert 96780, remove warnings from project/editor settings _get.

This commit is contained in:
bruvzg
2024-10-04 19:09:53 +03:00
parent 3576e840c7
commit 794920b1ff
4 changed files with 54 additions and 62 deletions

View File

@@ -348,7 +348,6 @@ bool ProjectSettings::_get(const StringName &p_name, Variant &r_ret) const {
_THREAD_SAFE_METHOD_
if (!props.has(p_name)) {
WARN_PRINT("Property not found: " + String(p_name));
return false;
}
r_ret = props[p_name].variant;