add purchasedPlayer to RFA server data (#1103)

This commit is contained in:
Shy
2024-02-17 06:11:29 +01:00
committed by GitHub
parent 9b483bdd8a
commit aba2336093
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ export interface FileServer {
server: string;
}
export type RFAServerData = Pick<BaseServer, "hostname" | "hasAdminRights">;
export type RFAServerData = Pick<BaseServer, "hostname" | "hasAdminRights" | "purchasedByPlayer">;
export function isFileData(p: unknown): p is FileData {
const pf = p as FileData;