GDScript: Fix inheritance check of @onready for inner classes

This commit is contained in:
George Marques
2023-02-06 14:52:13 -03:00
parent eee343210d
commit ed5ddab7e5
5 changed files with 19 additions and 1 deletions
@@ -0,0 +1,7 @@
extends RefCounted
func test():
print("ok")
class Inner extends Node:
@onready var okay = 0