Use int instead of long for user_id fields for now

This commit is contained in:
Dean Herbert
2020-11-06 12:40:54 +09:00
parent 3e652fdf9c
commit 1e1569eb53
9 changed files with 12 additions and 12 deletions

View File

@ -277,7 +277,7 @@ namespace osu.Game.Tournament.Screens.Editors
userId.Value = user.Id.ToString();
userId.BindValueChanged(idString =>
{
long.TryParse(idString.NewValue, out var parsed);
int.TryParse(idString.NewValue, out var parsed);
user.Id = parsed;