trying to remove rider plugin before CI build
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 29s
Create tag and build when new code gets to main / Export (push) Successful in 7m46s

This commit is contained in:
2026-05-17 11:08:41 +02:00
parent 06ef5d892b
commit b2ab80c54c
4 changed files with 9 additions and 8 deletions

View File

@@ -41,8 +41,8 @@ public partial class SelectedAbility : Control
public void AbilityUpdated()
{
var icon = _icon ?? GetNode<TextureRect>("%Icon");
var title = _title ?? GetNode<Label>("%Title");
var icon = _icon ?? GetNode<TextureRect>("HBoxContainer/Icon");
var title = _title ?? GetNode<Label>("HBoxContainer/Title");
if (icon == null || title == null) return;
if (_ability == null)
{