aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-30 02:24:38 +0000
committerGitHub <noreply@github.com>2021-12-30 02:24:38 +0000
commit3e5fb06337812e4a6b2aff3eea203ce2b76cc46d (patch)
tree319f6265e47fc1eaf1601f78f12d85d58b171c26 /Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut
parentf4a44a7859e60843792580cced586e4f74448849 (diff)
parent07ccd9d1ddfde5f6f06c4cf75e1b3690c34b1f3d (diff)
downloadNorthstarMods-3e5fb06337812e4a6b2aff3eea203ce2b76cc46d.tar.gz
NorthstarMods-3e5fb06337812e4a6b2aff3eea203ce2b76cc46d.zip
Merge pull request #22 from x3Karma/main
General Gamemodes Improvement
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_tdm.nut')
-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
+}