Skip to content

Commit

Permalink
update to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
dingdongg committed May 28, 2024
1 parent fb83a05 commit 6138d7d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/dingdongg/pkmn-rom-parser/v2
module github.com/dingdongg/pkmn-rom-parser/v3

go 1.22.3

Expand Down
2 changes: 1 addition & 1 deletion items/items.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strconv"
"strings"

"github.com/dingdongg/pkmn-rom-parser/v2/path_resolver"
"github.com/dingdongg/pkmn-rom-parser/v3/path_resolver"
)

// fetch item names and cache in RAM to prevent multiple file IO operations
Expand Down
4 changes: 2 additions & 2 deletions parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package parser
import (
"errors"

"github.com/dingdongg/pkmn-rom-parser/v2/rom_reader"
"github.com/dingdongg/pkmn-rom-parser/v2/validator"
"github.com/dingdongg/pkmn-rom-parser/v3/rom_reader"
"github.com/dingdongg/pkmn-rom-parser/v3/validator"
)

const PERSONALITY_OFFSET = 0xA0
Expand Down
6 changes: 3 additions & 3 deletions rom_reader/rom_reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"fmt"
"log"

"github.com/dingdongg/pkmn-rom-parser/v2/char_encoder"
"github.com/dingdongg/pkmn-rom-parser/v2/data"
"github.com/dingdongg/pkmn-rom-parser/v2/prng"
"github.com/dingdongg/pkmn-rom-parser/v3/char_encoder"
"github.com/dingdongg/pkmn-rom-parser/v3/data"
"github.com/dingdongg/pkmn-rom-parser/v3/prng"
)

type blockOrder struct {
Expand Down

0 comments on commit 6138d7d

Please sign in to comment.