summary refs log tree commit diff
path: root/util
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-04 11:38:19 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-04 11:38:19 +0200
commit1175e5c718a7ed5e60151b60480ad825e39ac51a (patch)
tree77c2e6ec6d6469edc8cf99042cac630de48895e9 /util
parent:bug: fix patch-package (diff)
downloadserver-1175e5c718a7ed5e60151b60480ad825e39ac51a.tar.xz
:bug: fix ReadyEventData
Diffstat (limited to 'util')
-rw-r--r--util/src/interfaces/Event.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/interfaces/Event.ts b/util/src/interfaces/Event.ts
index 2885d62a..ae966e42 100644
--- a/util/src/interfaces/Event.ts
+++ b/util/src/interfaces/Event.ts
@@ -87,7 +87,7 @@ export interface ReadyEventData {
 		id: string;
 		flags: string;
 	};
-	merged_members?: Omit<Member, "settings" | "user">[][];
+	merged_members?: PublicMember[][];
 	// probably all users who the user is in contact with
 	users?: PublicUser[];
 }