Simplify RefCounted check in free()
This commit is contained in:
parent
1952f64b07
commit
2de8bc00a1
1 changed files with 1 additions and 1 deletions
|
@ -728,7 +728,7 @@ Variant Object::callp(const StringName &p_method, const Variant **p_args, int p_
|
|||
r_error.expected = 0;
|
||||
return Variant();
|
||||
}
|
||||
if (Object::cast_to<RefCounted>(this)) {
|
||||
if (is_ref_counted()) {
|
||||
r_error.error = Callable::CallError::CALL_ERROR_INVALID_METHOD;
|
||||
ERR_FAIL_V_MSG(Variant(), "Can't 'free' a reference.");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue