File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package validation
33const (
44 MaxRunesAllowedInACharacterName = 29 // Larggest character name length possible
55 MinRunesAllowedInACharacterName = 2 // Smallest character name length possible
6- MaxRunesAllowedInACharacterNameWord = 16 // Larggest character name word length possible (new names only 14, but older ones are longer)
6+ MaxRunesAllowedInACharacterNameWord = 20 // Larggest character name word length possible (new names only 14, but older ones are longer)
77 MinRunesAllowedInACharacterNameWord = 2 // Smallest character name word length possible
88
99 MaxRunesAllowedInAGuildName = 29 // Larggest guild name length possible
Original file line number Diff line number Diff line change @@ -836,7 +836,7 @@ func TestFake(t *testing.T) {
836836
837837 assert .Equal (29 , MaxRunesAllowedInACharacterName )
838838 assert .Equal (2 , MinRunesAllowedInACharacterName )
839- assert .Equal (16 , MaxRunesAllowedInACharacterNameWord )
839+ assert .Equal (20 , MaxRunesAllowedInACharacterNameWord )
840840 assert .Equal (2 , MinRunesAllowedInACharacterNameWord )
841841
842842 assert .Equal (29 , MaxRunesAllowedInAGuildName )
You can’t perform that action at this time.
0 commit comments