working on a actual real go server software, and then i see this absolutly digusting code 😢 func sendSetTexturePack(conn net.Conn, textureURL string) { pkt := make([]byte, 65) pkt[0] = 0x28 copy(pkt[1:65], padString(textureURL)) conn.Write(pkt) } geniounely what is the point of this?? this is a singular excerpt from your codebase (which is a single file by the way!), come on! func WriteSetMapEnvUrl(w io.Writer, url string) { w.Write([]byte{PacketSetMapEnvUrl}) WriteString(w, url, 64) } this is how a real person would write your code, consise and with lines of code that people can ACTUALLY READ instead of horrible ai slop you aren't going to learn any language by asking a ai to do it and not changing a single thing