Fix a typo in copy-pasted code

This commit is contained in:
2018-12-30 23:22:20 +00:00
parent c441851a9b
commit 6d3a13fcfb

View File

@@ -44,7 +44,7 @@ func LoadSets(dir string) (map[string]*MapSet, error) {
basename := filepath.Base(filename)
extname := filepath.Ext(filename)
// Don't try to load non-.obj files
// Don't try to load non-.set files
if !strings.EqualFold(extname, ".set") {
continue
}