This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/tribalwars/helpers.go

9 lines
131 B
Go

package tribalwars
func LanguageCodeFromWorldName(world string) string {
if len(world) < 2 {
return ""
}
return world[0:2]
}