From 0e28b9fa1291523e8fb9ddc03c20db466c9fed57 Mon Sep 17 00:00:00 2001 From: Ryan Cloherty Date: Wed, 29 Dec 2021 23:47:36 -0500 Subject: [PATCH] Show Aegis Last Titan Standing scores --- titanfall2-rp/MpStats.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/titanfall2-rp/MpStats.cs b/titanfall2-rp/MpStats.cs index 95ab206..5869d1f 100644 --- a/titanfall2-rp/MpStats.cs +++ b/titanfall2-rp/MpStats.cs @@ -258,6 +258,7 @@ public static MpStats Of(Titanfall2Api titanfall2Api, ProcessSharp sharp) GameMode.solo => throw new ArgumentException("Tried to get multiplayer details for the campaign"), GameMode.ffa => new FreeForAll(titanfall2Api, sharp), GameMode.fra => new FreeAgents(titanfall2Api, sharp), + GameMode.alts => new LastTitanStanding(titanfall2Api, sharp), _ => ReportGameModeFailure(gameMode) }; }