diff --git a/src/logic-scenes/board/card.gd b/src/logic-scenes/board/card.gd index f3c8a06..8910b54 100644 --- a/src/logic-scenes/board/card.gd +++ b/src/logic-scenes/board/card.gd @@ -19,8 +19,8 @@ var scale_tween if !Engine.is_editor_hint(): wiggle_pos = float(text.hash() % 100) _handle_wiggle(0) - if get_children() != [] and !Engine.is_editor_hint() and text == "": - $BackgroundSprite.void_active = true + if get_children() != [] and !Engine.is_editor_hint(): + $BackgroundSprite.void_active = text == "" @export var wiggle_strength: float = 0.2 @export var wiggle_speed: float = 5 @export_range(1, 2) var scale_bump: float = 1.05