online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/menus/account/Restrict.gd')
-rw-r--r--ui/menus/account/Restrict.gd12
1 files changed, 0 insertions, 12 deletions
diff --git a/ui/menus/account/Restrict.gd b/ui/menus/account/Restrict.gd
deleted file mode 100644
index c1b6470..0000000
--- a/ui/menus/account/Restrict.gd
+++ /dev/null
@@ -1,12 +0,0 @@
-extends LineEdit
-class_name Restrict
-
-
-func _on_text_changed(new_text: String):
- var pos = caret_position
- text = new_text.strip_edges().strip_escapes()
- caret_position = pos
-
-
-func _ready():
- connect("text_changed", self, "_on_text_changed")