diff --git a/tutorials/scripting/gdscript/gdscript_exports.rst b/tutorials/scripting/gdscript/gdscript_exports.rst index f68db1623..27046396f 100644 --- a/tutorials/scripting/gdscript/gdscript_exports.rst +++ b/tutorials/scripting/gdscript/gdscript_exports.rst @@ -121,7 +121,7 @@ Examples export(NodePath) var node_path # Do take note that the node itself isn't being exported - # there is one more step to call the true node: - var node = get_node(node_path) + onready var node = get_node(node_path) # Resources