changed normalized form of games ids
opl seems to work mostly with this format
This commit is contained in:
@@ -53,9 +53,9 @@ func normalizeGameID(id string) string {
|
||||
}
|
||||
|
||||
prefix := strings.ToUpper(matches[1])
|
||||
number := matches[2] + matches[3]
|
||||
number := matches[2] + "." + matches[3]
|
||||
|
||||
return prefix + "-" + number
|
||||
return prefix + "_" + number
|
||||
}
|
||||
|
||||
func renameGameFile(filePath, gameName string) (string, error) {
|
||||
|
||||
Reference in New Issue
Block a user