diff --git a/manager.go b/manager.go index f3bb25b..e668427 100644 --- a/manager.go +++ b/manager.go @@ -117,10 +117,6 @@ func CreateGame(gameName string, gameDataPath string) error { } if iniFile, openError := os.Open(gamesIniPath); openError == nil { - if (openError != nil) && !(os.IsNotExist(openError)) { - return openError - } - defer func() { if closeError := iniFile.Close(); closeError != nil { panic(closeError)