Skip to content

Commit

Permalink
Disable first run stash forcing (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
artosimonyan authored Feb 3, 2025
1 parent 58ce90c commit 2bb18c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/action/town.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ func PreRun(firstRun bool) error {

// Store items that need to be left unidentified
if HaveItemsToStashUnidentified() {
Stash(firstRun)
Stash(false)
}

// Identify - either via Cain or Tome
IdentifyAll(firstRun)
IdentifyAll(false)

// Stash before vendor
Stash(firstRun)
Stash(false)

// Refill pots, sell, buy etc
VendorRefill(false, true)
Expand Down

0 comments on commit 2bb18c9

Please sign in to comment.