higher kill count limit

This commit is contained in:
Robin Appelman 2023-03-26 15:04:18 +02:00
commit 198c187013
2 changed files with 7 additions and 7 deletions

View file

@ -34,9 +34,9 @@ impl From<LogHandlerPerSubjectOutput> for LogPlayerData {
#[derive(Serialize)]
struct ClassStatsRaw {
kills: [u8; 10],
deaths: [u8; 10],
assists: [u8; 10],
kills: [u16; 10],
deaths: [u16; 10],
assists: [u16; 10],
damage: [u16; 10],
}