diff --git a/cmd/main.go b/cmd/main.go index 6fd7a3c..fa6c90c 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -4,6 +4,7 @@ import ( "time" "log" "net/http" + "strings" "git.snrd.de/Spaenny/steamServer" "git.snrd.de/Spaenny/steamServer/postgres" @@ -91,6 +92,13 @@ func updateServers(host string, store steamServer.Store) { } log.Printf("%s - %s\n", host, info.Name) + + // Some Servers use workshop maps and add a prefix, we don't need that + if strings.HasPrefix(info.Map, "workshop/") { + mapSplit := strings.Split(info.Map, "/") + info.Map = mapSplit[1] + } + server := steamServer.Server { AppID: info.ID,