diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-07-25 11:54:48 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-07-25 11:55:56 +0200 |
commit | c91860bb11124ee3a0a7a8dedab5ab3a26fca699 (patch) | |
tree | e19d18f5db3579e0e40e6a7ac4825ae1a984d02b /core | |
parent | 6b11d8cc7373a8d88d09d9c46bc2f33a6643567a (diff) |
ResourceUID: Fix `remove_id` binding
Fixes #50833.
Diffstat (limited to 'core')
-rw-r--r-- | core/io/resource_uid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource_uid.cpp b/core/io/resource_uid.cpp index d4e8fcb6b0..97d683f415 100644 --- a/core/io/resource_uid.cpp +++ b/core/io/resource_uid.cpp @@ -249,7 +249,7 @@ void ResourceUID::_bind_methods() { ClassDB::bind_method(D_METHOD("add_id", "id", "path"), &ResourceUID::add_id); ClassDB::bind_method(D_METHOD("set_id", "id", "path"), &ResourceUID::set_id); ClassDB::bind_method(D_METHOD("get_id_path", "id"), &ResourceUID::get_id_path); - ClassDB::bind_method(D_METHOD("remove_id", "id", "path"), &ResourceUID::remove_id); + ClassDB::bind_method(D_METHOD("remove_id", "id"), &ResourceUID::remove_id); BIND_CONSTANT(INVALID_ID) } |