Store codepoints in a signed long

This commit is contained in:
Michael 2017-06-01 08:40:29 -04:00
parent c8eccc638b
commit e19278cc2e
3 changed files with 5 additions and 5 deletions

View file

@ -59,7 +59,7 @@ public ActionResult SetPongCP(ulong id)
var db = new ApplicationDbContext();
var t = db.OAuthTokens.FirstOrDefault(x => x.Id == token);
var user = db.Users.FirstOrDefault(x => x.Id == t.UserId);
user.Pong_HighestCodepointsCashout = id;
user.Pong_HighestCodepointsCashout = (long)id;
db.SaveChanges();
return new HttpStatusCodeResult(200);
}
@ -134,7 +134,7 @@ public ActionResult SetCodepoints(ulong id)
var db = new ApplicationDbContext();
var t = db.OAuthTokens.FirstOrDefault(x => x.Id == token);
var user = db.Users.FirstOrDefault(x => x.Id == t.UserId);
user.Codepoints = id;
user.Codepoints = (long)id;
db.SaveChanges();
return new HttpStatusCodeResult(200);
}

View file

@ -42,7 +42,7 @@ public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<Applicat
}
public int Pong_HighestLevel { get; set; }
public ulong Pong_HighestCodepointsCashout { get; set; }
public long Pong_HighestCodepointsCashout { get; set; }
#region Privacy
@ -155,7 +155,7 @@ public int TopicCount
}
}
public ulong Codepoints { get; set; }
public long Codepoints { get; set; }
[AllowHtml]
public string Bio { get; set; }

View file

@ -8,7 +8,7 @@ namespace Project_Unite.Models
public class PongHighscore
{
public string UserId { get; set; }
public ulong CodepointsCashout { get; set; }
public long CodepointsCashout { get; set; }
public int Level { get; set; }
}