diff --git a/src/ui/scenes/training_room.gd b/src/ui/scenes/training_room.gd index 45e607e..f570e79 100644 --- a/src/ui/scenes/training_room.gd +++ b/src/ui/scenes/training_room.gd @@ -157,7 +157,7 @@ func _show_table_cards(cards: Array[Card]) -> void: var node := CARD_NODE_SCENE.instantiate() as CardNode if node == null: continue - table_label.add_child(node) + table_card_root.add_child(node) node.setup(card) node.position = Vector2(start_x + i * 60, 80) node.custom_minimum_size = Vector2(55, 80)