Fraktionsmitgliederliste eingebaut inkl. uninvite für Leader

This commit is contained in:
VegaZ
2021-04-11 01:52:21 +02:00
parent aaaf86b92b
commit 35f611f889
4 changed files with 103 additions and 27 deletions

View File

@@ -64,6 +64,14 @@ declare type FactionRanks = {
ranks: FactionRank[]
}
declare type FactionMember = {
username: string;
factionRank: number;
factionRankName: string;
isLeader: boolean;
isOnline: boolean;
}
declare type FactionRank = {
}