Commit 592e05e Damon Pollard
authored
File tree 5 files changed +12
-7
lines changed
Model/Stats/CarnageReport/Common
JSON/Stats/CarnageReport/Common
5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,11 @@ A Nuget package is available at [www.nuget.org/packages/HaloSharp](https://www.n
56
56
57
57
### Changelog ###
58
58
59
+ ###### v.1.5.6.0 (2016-07-28)
60
+
61
+ 1 . Updated XpInfo model.
62
+ * Updated: PerformanceXP
63
+
59
64
###### v.1.5.5.0 (2016-07-16)
60
65
61
66
1 . Updated WarzoneMatch model.
Original file line number Diff line number Diff line change 21
21
"type" : " integer"
22
22
},
23
23
"PerformanceXP" : {
24
- "type" : " integer"
24
+ "type" : [ " null " , " integer" ]
25
25
},
26
26
"PlayerRankXPAward" : {
27
27
"type" : " integer"
Original file line number Diff line number Diff line change 31
31
// You can specify all the values or you can default the Build and Revision Numbers
32
32
// by using the '*' as shown below:
33
33
// [assembly: AssemblyVersion("1.0.*")]
34
- [ assembly: AssemblyVersion ( "1.5.5 .0" ) ]
35
- [ assembly: AssemblyFileVersion ( "1.5.5 .0" ) ]
34
+ [ assembly: AssemblyVersion ( "1.5.6 .0" ) ]
35
+ [ assembly: AssemblyFileVersion ( "1.5.6 .0" ) ]
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public class XpInfo : IEquatable<XpInfo>
29
29
/// The XP awarded to the player based on how their team ranked when the match concluded.
30
30
/// </summary>
31
31
[ JsonProperty ( PropertyName = "PerformanceXP" ) ]
32
- public int PerformanceXp { get ; set ; }
32
+ public int ? PerformanceXp { get ; set ; }
33
33
34
34
/// <summary>
35
35
/// The XP awarded to the player for their team-agnostic rank.
@@ -125,7 +125,7 @@ public override int GetHashCode()
125
125
var hashCode = BoostAmount ;
126
126
hashCode = ( hashCode * 397 ) ^ MatchSpeedWinAmount ;
127
127
hashCode = ( hashCode * 397 ) ^ ObjectivesCompletedAmount ;
128
- hashCode = ( hashCode * 397 ) ^ PerformanceXp ;
128
+ hashCode = ( hashCode * 397 ) ^ PerformanceXp . GetHashCode ( ) ;
129
129
hashCode = ( hashCode * 397 ) ^ PlayerRankXpAward ;
130
130
hashCode = ( hashCode * 397 ) ^ PlayerTimePerformanceXpAward ;
131
131
hashCode = ( hashCode * 397 ) ^ PrevSpartanRank ;
Original file line number Diff line number Diff line change 32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.5.5 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.5.5 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "1.5.6 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.5.6 .0" ) ]
37
37
38
38
//HaloSharp.Test
39
39
[ assembly: InternalsVisibleTo ( "HaloSharp.Test" ) ]
You can’t perform that action at this time.
0 commit comments