From 19106c7c51fbc7fc2c52e958a151fc35b1ff7d0e Mon Sep 17 00:00:00 2001 From: thunder123456 <36616001+thunder123456@users.noreply.github.com> Date: Thu, 24 Dec 2020 00:55:12 -0600 Subject: [PATCH] Allow half levels to show in PVP notification (#109) Co-authored-by: Thunder --- src/Net/Models/PVPRank.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Net/Models/PVPRank.cs b/src/Net/Models/PVPRank.cs index da72ab57..f9e3c0e9 100644 --- a/src/Net/Models/PVPRank.cs +++ b/src/Net/Models/PVPRank.cs @@ -20,7 +20,7 @@ public sealed class PVPRank public int FormId { get; set; } [JsonProperty("level")] - public ushort? Level { get; set; } + public double? Level { get; set; } [JsonProperty("cp")] public int? CP { get; set; }