mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-09 23:00:57 -05:00
update schema to support unique guid + game combinations
This commit is contained in:
@ -1181,7 +1181,8 @@ namespace SharedLibraryCore
|
||||
Meta = client.Meta,
|
||||
ReceivedPenalties = client.ReceivedPenalties,
|
||||
AdministeredPenalties = client.AdministeredPenalties,
|
||||
Active = client.Active
|
||||
Active = client.Active,
|
||||
GameName = client.GameName
|
||||
};
|
||||
}
|
||||
|
||||
@ -1264,5 +1265,8 @@ namespace SharedLibraryCore
|
||||
|
||||
return allRules[index];
|
||||
}
|
||||
|
||||
public static string MakeAbbreviation(string gameName) => string.Join("",
|
||||
gameName.Split(' ').Select(word => char.ToUpper(word.First())).ToArray());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user