lib/elfs: toLower everything

This commit is contained in:
Cadey Ratio 2017-01-19 16:29:01 -08:00
parent 244ebfda04
commit f58c7d6d86
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ package elfs
import ( import (
"fmt" "fmt"
"math/rand" "math/rand"
"strings"
) )
// Names is the name of every Pokemon from Pokemon Vietnamese Crystal. // Names is the name of every Pokemon from Pokemon Vietnamese Crystal.
@ -501,5 +502,5 @@ func MakeName() string {
move1 := randomMove() move1 := randomMove()
move2 := randomMove() move2 := randomMove()
poke := randomName() poke := randomName()
return fmt.Sprintf("%s-%s-%s", move1, move2, poke) return strings.ToLower(fmt.Sprintf("%s-%s-%s", move1, move2, poke))
} }