aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers
diff options
context:
space:
mode:
authorWilliam Miller <william-millennium@hotmail.com>2024-07-06 19:53:51 -0300
committerGitHub <noreply@github.com>2024-07-07 00:53:51 +0200
commitde01dc34c66a57eb77b68e1403f5503e84802df8 (patch)
tree3564b5bc05412f77d440d02001090cdd263eb254 /Northstar.CustomServers
parente898b0a17d817bf36189ed9c5499ded4cefdbb26 (diff)
downloadNorthstarMods-de01dc34c66a57eb77b68e1403f5503e84802df8.tar.gz
NorthstarMods-de01dc34c66a57eb77b68e1403f5503e84802df8.zip
Fix oversight in "Total MVP" not registering in regards to progression (#814)v1.26.1
The game have an extra stat especifically to count the total amount of times a player has been MVP in all matches, while the other mvp stat which i previously thought to be absolutely is only registered per map, not globally.
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut1
1 files changed, 1 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
index 5eba24acd..f7c398d97 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
@@ -861,6 +861,7 @@ void function SetWinner( int team, string winningReason = "", string losingReaso
{
case 1:
UpdatePlayerStat( players[i], "game_stats", "mvp" )
+ UpdatePlayerStat( players[i], "game_stats", "mvp_total" )
UpdatePlayerStat( players[i], "game_stats", "top3OnTeam" )
break
case 2: