Skip to content

Commit

Permalink
Update trespasser_remaster.nut
Browse files Browse the repository at this point in the history
  • Loading branch information
Brain-dawg committed Nov 26, 2024
1 parent d0a7341 commit 47c5b6f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/vscripts/trespasser_remaster.nut
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,11 @@ if(hObjectiveResource && hObjectiveResource.IsValid()) hObjectiveResource.Accept
//test database write
VPI.AsyncCall({func="VPI_DB_Trespasser_ReadWrite", kwargs={query_mode="write", network_id=sNetworkIDSlice, wins=Array[0], solo_win=Array[1], all_survivors_alive_win=Array[2]}, callback=function(response) {
foreach (r in response)
printl(r)
if (typeof r == "array")
foreach (col in r)
printl(col)
else
printl(r)
}})
}
}
Expand Down

0 comments on commit 47c5b6f

Please sign in to comment.