lib/elfs: toLower everything
This commit is contained in:
parent
244ebfda04
commit
f58c7d6d86
lib/elfs
|
@ -6,6 +6,7 @@ package elfs
|
|||
import (
|
||||
"fmt"
|
||||
"math/rand"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// Names is the name of every Pokemon from Pokemon Vietnamese Crystal.
|
||||
|
@ -501,5 +502,5 @@ func MakeName() string {
|
|||
move1 := randomMove()
|
||||
move2 := randomMove()
|
||||
poke := randomName()
|
||||
return fmt.Sprintf("%s-%s-%s", move1, move2, poke)
|
||||
return strings.ToLower(fmt.Sprintf("%s-%s-%s", move1, move2, poke))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue