fix: stabilize godot 4.7 headless validation
This commit is contained in:
@@ -19,7 +19,7 @@ func _ready() -> void:
|
||||
push_error("ActivitySite at %s has empty site_id" % get_path())
|
||||
_update_presentation()
|
||||
return
|
||||
var existing := get_by_id(site_id)
|
||||
var existing: ActivitySite = get_by_id(site_id) as ActivitySite
|
||||
if existing != null:
|
||||
push_error(
|
||||
(
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
uid://bly1hd36boprk
|
||||
@@ -21,7 +21,7 @@ func _ready() -> void:
|
||||
push_error("StorageNode at %s has empty storage_id" % get_path())
|
||||
_update_presentation()
|
||||
return
|
||||
var existing := get_by_id(storage_id)
|
||||
var existing: StorageNode = get_by_id(storage_id) as StorageNode
|
||||
if existing != null:
|
||||
push_error(
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user