Skip to content

Commit

Permalink
v1.16.2-beta
Browse files Browse the repository at this point in the history
added additional archnemesis_inventory check at startup
  • Loading branch information
Lailloken authored Feb 19, 2022
1 parent e52e9ad commit ca0ff84
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Lailloken UI.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ Loop, Parse, all_nemesis, `n,`n
}
Sort, all_nemesis, C D`n
IniRead, archnemesis_inventory, ini\config.ini, Archnemesis, inventory
Loop, 9
{
If InStr(archnemesis_inventory, A_Index)
{
archnemesis_inventory := ""
break
}
}
If (archnemesis_inventory != "") && (archnemesis_inventory != "ERROR")
{
Loop, Parse, archnemesis_inventory, `,,`,
Expand Down

0 comments on commit ca0ff84

Please sign in to comment.