Fix character encoding bug

This commit is contained in:
Dustin Pianalto
2020-06-12 00:20:06 -08:00
parent bf10724777
commit 97bb212683
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ func interleave(ctx disgoman.Context, args []string) {
z |= x_masked_i << i
z |= y_masked_i << (i + 1)
}
ctx.Send(string(z))
ctx.Send(fmt.Sprintf("%v", z))
}
}