Skip to content

Commit a40e26e

Browse files
authored
v1.53.5 (Hotfix 1) merge
- hotfix 1: stash-ninja was activated by rare items that had the same name as tab-specific items (e.g. abyss jewels with the name "ancient orb")
2 parents b3b03c8 + 66b3cde commit a40e26e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

data/changelog.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
[
33
["1.53.5", 15305],
4+
"hotfix 1: stash-ninja was activated by rare items that had the same name as tab-specific items",
45
"restored geforce now compatibility",
56
"added optional hotkeys to switch between leveling tracker guide-pages",
67
"stash-ninja: price history fix, custom stock for unstackable items"

data/versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"_release": [15305, "https://github.com/Lailloken/Lailloken-UI/archive/refs/heads/main.zip"]
2+
"_release": [15305, "https://github.com/Lailloken/Lailloken-UI/archive/refs/heads/main.zip"],
3+
"hotfix": 1
34
}

modules/omni-key.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ OmniContext(mode := 0)
268268
If settings.features.stash
269269
{
270270
check := LLK_HasKey(vars.stash, item.name,,,, 1), start := A_TickCount
271-
While check && GetKeyState(ThisHotkey_copy, "P")
271+
While check && (Blank(item.itembase) || item.name = item.itembase) && GetKeyState(ThisHotkey_copy, "P")
272272
If (A_TickCount >= start + 150)
273273
{
274274
Stash_(check)

0 commit comments

Comments
 (0)