Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions managers/BootstrapManager_easyjson.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions managers/GenerationManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ func createRecruit(position string, stars int, firstName, lastName string, blob
Age: int8(age),
Stars: int8(stars),
Height: int8(height),
Weight: int8(weight),
Weight: int16(weight),
Stamina: int8(stamina),
Injury: int8(injury),
FootballIQ: int8(footballIQ),
Expand Down Expand Up @@ -751,7 +751,7 @@ func createWalkon(position string, firstNameList [][]string, lastNameList [][]st
Age: int8(age),
Stars: 0,
Height: int8(height),
Weight: int8(weight),
Weight: int16(weight),
Stamina: int8(stamina),
Injury: int8(injury),
FootballIQ: int8(footballIQ),
Expand Down Expand Up @@ -865,7 +865,7 @@ func createCustomCroot(croot []string, id uint, blob map[string]map[string]map[s
Age: int8(age),
Stars: int8(stars),
Height: int8(height),
Weight: int8(weight),
Weight: int16(weight),
Stamina: int8(stamina),
Injury: int8(injury),
FootballIQ: int8(footballIQ),
Expand Down
2 changes: 1 addition & 1 deletion structs/BasePlayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type BasePlayer struct {
PreviousTeamID uint
PreviousTeam string
Height int8
Weight int8
Weight int16
Age int8
Stars int8
Overall int8
Expand Down
Loading