mirror of
https://github.com/BubbaGumpShrump/AutoTrackR2.git
synced 2025-07-11 14:17:50 +00:00
Moar fix
This commit is contained in:
parent
256407c654
commit
a24607d7fe
3 changed files with 7 additions and 7 deletions
AutoTrackR2
|
@ -101,13 +101,13 @@ $global:killTally = 0
|
|||
|
||||
|
||||
# Load historic kills from csv
|
||||
$historicKills = Import-CSV "$scriptFolder\Kill-log.csv" | Sort-Object Descending
|
||||
Try{
|
||||
if (Test-Path "$scriptFolder\Kill-Log.csv") {
|
||||
$historicKills = Import-CSV "$scriptFolder\Kill-log.csv" | Sort-Object Descending
|
||||
foreach ($kill in $historicKills) {
|
||||
Write-Output "NewKill=throwaway,$($kill.EnemyPilot),$($kill.EnemyShip),$($kill.OrgAffiliation),$($kill.Enlisted),$($kill.RecordNumber),$($kill.KillTime),$($kill.PFP)"
|
||||
$global:killTally++
|
||||
}
|
||||
} Catch {}
|
||||
}
|
||||
Write-Output "KillTally=$global:killTally"
|
||||
|
||||
# Match and extract username from gamelog
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace AutoTrackR2
|
|||
{
|
||||
public partial class UpdatePage : UserControl
|
||||
{
|
||||
private string currentVersion = "v2.0-beta.01";
|
||||
private string currentVersion = "v2.0-beta.1";
|
||||
private string latestVersion;
|
||||
|
||||
public UpdatePage()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue