Skip to content

Commit

Permalink
v1.25.0-hotfix: fixed bug in map-info panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Lailloken authored Jun 9, 2022
1 parent d87e38d commit 763ee5e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions Lailloken UI.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -1819,9 +1819,9 @@ Else parseboard := SubStr(map_mods_clipped, InStr(map_mods_clipped, "Item Level:
IniRead, map_mods_list, data\Map mods.ini
Loop, Parse, parseboard, `n, `n
{
If (A_LoopField = "")
If (A_LoopField = "") || InStr(A_Loopfield, "{") || (SubStr(A_Loopfield, 1, 1) = "(")
continue
check := A_LoopField
check := InStr(A_Loopfield, "(") ? SubStr(A_LoopField, 1, InStr(A_Loopfield, "(",,, 1) - 1) SubStr(A_Loopfield, InStr(A_Loopfield, ")") + 1) : A_Loopfield
check_characters := "-0123456789%"
map_mod_pretext := ""
Loop, Parse, check
Expand Down Expand Up @@ -2393,11 +2393,6 @@ If (clipboard != "")
}
}
}
If InStr(clipboard, "power core") || InStr(clipboard, "recombinator")
{
GoSub, Recombinators
Return
}
If !InStr(clipboard, "Rarity: Currency") && !InStr(clipboard, "Item Class: Map") && !InStr(clipboard, "Unidentified") && !InStr(clipboard, "Heist") && !InStr(clipboard, "Item Class: Expedition") && !InStr(clipboard, "Item Class: Stackable Currency") || InStr(clipboard, "to the goddess") || InStr(clipboard, "other oils")
{
GoSub, Omnikey_context_menu
Expand Down

0 comments on commit 763ee5e

Please sign in to comment.