online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/FENlabel.gd')
| -rw-r--r-- | ui/FENlabel.gd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/FENlabel.gd b/ui/FENlabel.gd index 1240d25..2dc0c91 100644 --- a/ui/FENlabel.gd +++ b/ui/FENlabel.gd @@ -4,8 +4,7 @@ class_name FENLabel func _ready() -> void: Utils.connect("newfen", self, "on_new_fen") - context_menu_enabled = false -func on_new_fen(fen) -> void: +func on_new_fen(fen: String) -> void: text = fen |