fixed bug causing some items to be marked in inventory after selling them to vendor

This commit is contained in:
Héctor Giménez
2023-09-23 15:42:09 +09:00
parent 4a74a310ed
commit 51ec9e0dca
3 changed files with 12 additions and 19 deletions

8
go.mod
View File

@@ -1,12 +1,12 @@
module github.com/hectorgimenez/d2go
go 1.19
go 1.20
require (
github.com/faiface/beep v1.1.0
github.com/stretchr/testify v1.8.3
github.com/stretchr/testify v1.8.4
github.com/winlabs/gowin32 v0.0.0-20221003142512-0d265587d3c9
golang.org/x/sys v0.8.0
golang.org/x/sys v0.12.0
)
require (
@@ -15,7 +15,7 @@ require (
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8 // indirect
golang.org/x/image v0.7.0 // indirect
golang.org/x/image v0.1.0 // indirect
golang.org/x/mobile v0.0.0-20190415191353-3e0bab5405d6 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)