🎨 Auto-format GDScript code
Automated formatting applied by tools/run_development.py 🤖 Generated by Gitea Actions Workflow: Continuous Integration Run: http://server:3000/nett00n/skelly/actions/runs/90
This commit is contained in:
@@ -17,16 +17,12 @@ func _find_target_scene():
|
||||
# Fallback: search by common node names
|
||||
if not match3_scene:
|
||||
for possible_name in ["Match3", "match3", "Match3Game"]:
|
||||
match3_scene = current_scene.find_child(
|
||||
possible_name, true, false
|
||||
)
|
||||
match3_scene = current_scene.find_child(possible_name, true, false)
|
||||
if match3_scene:
|
||||
break
|
||||
|
||||
if match3_scene:
|
||||
DebugManager.log_debug(
|
||||
"Found match3 scene: " + match3_scene.name, log_category
|
||||
)
|
||||
DebugManager.log_debug("Found match3 scene: " + match3_scene.name, log_category)
|
||||
_update_ui_from_scene()
|
||||
_stop_search_timer()
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user