From 174ea174dfdb04fe038fb5512c2580354d66501b Mon Sep 17 00:00:00 2001 From: sasha80 Date: Wed, 27 Aug 2025 11:36:56 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5.=20=D0=A3=D1=81=D1=82=D1=80=D0=B0?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=B5=D0=B4=D1=83?= =?UTF-8?q?=D0=BF=D1=80=D0=B5=D0=B6=D0=B4=D0=B5=D0=BD=D0=B8=D1=8F:=20Casti?= =?UTF-8?q?ng=20"Variant"=20to=20"Control"=20is=20unsafe.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scenes/pribor-externals/externals.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/pribor-externals/externals.gd b/scenes/pribor-externals/externals.gd index ad8ff89..13575b0 100644 --- a/scenes/pribor-externals/externals.gd +++ b/scenes/pribor-externals/externals.gd @@ -7,7 +7,7 @@ func _ready() -> void: if Engine.is_editor_hint(): return for unit_inst in network.units.values(): - var unit_panel = UnitPanel.instantiate() as Control + var unit_panel = UnitPanel.instantiate() unit_panel.fname = unit_inst.name $grid.add_child(unit_panel) unit_inst.connect('line_changed', on_line_changed.bind(unit_panel))