Forum Discussion
STG_Mordin
9 days agoRising Hotshot
EA_Shepard
Somebody needs to tell those incompetent EA Play developers that they can't just remove all entitlements from customer's account when their EA Play subscription expires -- they have to check for all standalone purchases like in this case ME:A and leave entitlements of those on the account.
I can't believe the level of incompetence when this has been happening since EA Play was launched and it's still not fixed.
Pseudo-code of how it should work:
List<Game> GamesToRemove = new List<Game>();
foreach (var Game in Account.Games) {
if (Game.IsStandalonePurchase) {
continue;
} else {
if (Game.HasTrialMode) {
Game.Entitlements.Clear();
Game.IsTrial = true;
} else {
GamesToRemove.Add(Game);
}
}
}
foreach (var Game in GamesToRemove) {
Account.Games.Remove(Game);
}
About Mass Effect Franchise Discussion
The fate of the galaxy lies in your hands. Join the Mass Effect community forums and tell us how you'll fight for it.19,066 PostsLatest Activity: 4 years ago
Recent Discussions
- 3 minutes ago