Skip to content

Commit fc6c8bc

Browse files
authored
Fixes JSON integer is too large
1 parent 3ddf271 commit fc6c8bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Models/Minecraft/Spigot/SpigotManifest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class SpigotResponse
2222
public string Md5 { get; set; }
2323

2424
[JsonProperty("built")]
25-
public int Built { get; set; }
25+
public long Built { get; set; }
2626

2727
public GameUpdate GetGameUpdate()
2828
{
@@ -76,4 +76,4 @@ public static SpigotVersionManifest GetManifests()
7676
}
7777
}
7878
}
79-
}
79+
}

0 commit comments

Comments
 (0)