diff options
Diffstat (limited to 'client/menu/warning_popup.gd')
-rw-r--r-- | client/menu/warning_popup.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/menu/warning_popup.gd b/client/menu/warning_popup.gd index f418550b..20741834 100644 --- a/client/menu/warning_popup.gd +++ b/client/menu/warning_popup.gd @@ -1,5 +1,9 @@ extends Menu class_name WarningPopup +func _ready(): + print(self.data) + $CenterContainer/Panel/MarginContainer/VBoxContainer/Message.text = self.data + func _on_accept_pressed(): exit() |