Skip to content

Commit

Permalink
Make requested change
Browse files Browse the repository at this point in the history
Co-authored-by: Jack <[email protected]>
  • Loading branch information
CTalvio and ASpoonPlaysGames authored Dec 11, 2023
1 parent 97f3729 commit 52b39e4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Northstar.CustomServers/mod/scripts/vscripts/mp/_stats.nut
Original file line number Diff line number Diff line change
Expand Up @@ -1036,9 +1036,8 @@ void function SaveStatsPeriodically_Threaded()
{
foreach( entity player in GetPlayerArray() )
{
if ( !IsValid( player ) )
continue
Stats_SaveAllStats( player )
if ( IsValid( player ) )
Stats_SaveAllStats( player )
}
wait 5
}
Expand Down

0 comments on commit 52b39e4

Please sign in to comment.