aboutsummaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/global.gd')
-rw-r--r--client/global.gd3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/global.gd b/client/global.gd
index 404b4a8b..9d727161 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -217,3 +217,6 @@ func language_list():
a.sort()
a.insert(0, "system")
return a
+
+func array_eq(a, b):
+ return a.all(func(e): return a.count(e) == b.count(e))