Revert GameScoreEvent user count workaround

This commit is contained in:
Slendy 2023-08-31 18:27:02 -05:00
commit 966f6198c6
No known key found for this signature in database
GPG key ID: 7288D68361B91428

View file

@ -34,7 +34,7 @@ public class GameScoreEvent : GameEvent
this.Score = score.Points;
//TODO is this correct?
this.UserCount = score.Type == 7 ? 0 : score.Type;
this.UserCount = score.Type;
this.Slot = ReviewSlot.CreateFromEntity(slot);
}