Skip to content

Commit 9e7b3c9

Browse files
committed
Fixed missing space
1 parent 91a625f commit 9e7b3c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exporter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func createOverrides(missingMods []int) {
9696
if filepath.Ext(f.Name()) == ".jar" {
9797
fileHash, _ := GetFileHash(path.Join(PackDIR, "mods", f.Name()))
9898
if intInSlice(fileHash, missingMods) {
99-
fmt.Println("Failed to find mod: "+strconv.Itoa(fileHash)+f.Name()+" on CurseForge, adding to overrides")
99+
fmt.Println("Failed to find mod: "+strconv.Itoa(fileHash)+" "+f.Name()+" on CurseForge, adding to overrides")
100100
modSrc := path.Join(PackDIR, "mods", f.Name())
101101
CopyFile(modSrc, "./tmp/overrides/mods/"+f.Name())
102102
}

0 commit comments

Comments
 (0)