aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorx3Karma <juliuslimck@gmail.com>2021-12-29 12:37:07 +0800
committerGitHub <noreply@github.com>2021-12-29 12:37:07 +0800
commite4e46b7c061599a040164776b9b7cd96c1f40fb6 (patch)
tree23c83d827274b113cbcccfd327818e65b08c359b
parente8f67265e817bdca167fbb9970327588501be580 (diff)
downloadNorthstarMods-e4e46b7c061599a040164776b9b7cd96c1f40fb6.tar.gz
NorthstarMods-e4e46b7c061599a040164776b9b7cd96c1f40fb6.zip
Stop Skirmish from scoring during the epilogue
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut4
1 files changed, 2 insertions, 2 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut
index 5dd8a403b..fd5cbb146 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut
@@ -9,7 +9,7 @@ void function GamemodeTdm_Init()
void function GiveScoreForPlayerKill( entity victim, entity attacker, var damageInfo )
{
- if ( victim != attacker && victim.IsPlayer() && attacker.IsPlayer() )
+ if ( victim != attacker && victim.IsPlayer() && attacker.IsPlayer() && GetGameState() != eGameState.Epilogue )
AddTeamScore( attacker.GetTeam(), 1 )
}
@@ -17,4 +17,4 @@ void function RateSpawnpoints_Directional( int checkclass, array<entity> spawnpo
{
// temp
RateSpawnpoints_Generic( checkclass, spawnpoints, team, player )
-} \ No newline at end of file
+}