lib/elfs: toLower everything
This commit is contained in:
parent
244ebfda04
commit
f58c7d6d86
|
@ -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))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue