diff options
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut index 6a0fdbef..b9bb34bd 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut @@ -174,7 +174,7 @@ void function FD_PlayerRespawnCallback( entity player ) if( GetGameState() != eGameState.Playing) return - if( player.IsTitan() ) + if( player.GetPersistentVar( "spawnAsTitan" ) ) return player.SetInvulnerable() |