1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

ping players can be negative

This commit is contained in:
mat 2022-09-01 19:11:24 -05:00
parent 56afcb9dd8
commit d564b4cc4f

View file

@ -19,8 +19,8 @@ pub struct SamplePlayer {
#[derive(Clone, Debug, Deserialize)]
pub struct Players {
pub max: u32,
pub online: u32,
pub max: i32,
pub online: i32,
pub sample: Vec<SamplePlayer>,
}