From a6497608d9dfe78dc8ccda56c7c9d52133bb91a0 Mon Sep 17 00:00:00 2001 From: kobewi Date: Thu, 23 Apr 2026 08:48:47 +0200 Subject: [PATCH] Fix wrong _get() code in class reference --- doc/classes/Object.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index 7a83f77835c..44ad28e7bf0 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -43,6 +43,7 @@ if property == "fake_property": print("Getting my property!") return 4 + return null func _get_property_list(): return [ @@ -113,6 +114,7 @@ if property.begins_with("number_"): var index = property.get_slice("_", 1).to_int() return numbers[index] + return null func _set(property, value): if property.begins_with("number_"):