Merge pull request #22737 from DualMatrix/warn_sort_custom

Added a check in sort_custom that test whether the given method exists.
This commit is contained in:
Rémi Verschelde 2018-10-05 09:15:05 +02:00 committed by GitHub
commit fc6cf69a90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -258,6 +258,7 @@ struct _ArrayVariantSortCustom {
Array &Array::sort_custom(Object *p_obj, const StringName &p_function) {
ERR_FAIL_NULL_V(p_obj, *this);
ERR_FAIL_COND_V(!p_obj->has_method(p_function), *this);
SortArray<Variant, _ArrayVariantSortCustom, true> avs;
avs.compare.obj = p_obj;