remove odd debug print

This commit is contained in:
wishu
2022-07-06 07:43:51 +10:00
parent fc4760719a
commit acc2c03237

View File

@@ -1,7 +1,6 @@
package channelserver package channelserver
import ( import (
"fmt"
"math/rand" "math/rand"
"os" "os"
"io" "io"
@@ -187,7 +186,6 @@ func handleMsgMhfReadMercenaryW(s *Session, p mhfpacket.MHFPacket) {
resp.WriteBytes(data) resp.WriteBytes(data)
resp.WriteUint16(0) resp.WriteUint16(0)
resp.WriteUint32(gcp) resp.WriteUint32(gcp)
fmt.Printf("% x", resp.Data())
doAckBufSucceed(s, pkt.AckHandle, resp.Data()) doAckBufSucceed(s, pkt.AckHandle, resp.Data())
} }