Skip to content

Commit

Permalink
v2.5.4: fixed 2x unided SOTrans not being usable on its own stack
Browse files Browse the repository at this point in the history
  • Loading branch information
00-Evan committed Oct 8, 2024
1 parent 4ff769d commit e7dbe79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ protected boolean usableOnItem(Item item) {
} else if (item instanceof Potion){
return !(item instanceof Elixir || item instanceof Brew);

//all regular or exotic scrolls, except itself
//all regular or exotic scrolls, except itself (unless un-ided, in which case it was already consumed)
} else if (item instanceof Scroll){
return item != this || item.quantity() > 1;
return item != this || item.quantity() > 1 || identifiedByUse;

//all rings, wands, artifacts, trinkets, seeds, and runestones
} else {
Expand Down

0 comments on commit e7dbe79

Please sign in to comment.