| 3115 | } |
| 3116 | |
| 3117 | void NetSendCmdString(uint32_t pmask, const char *pszStr) |
| 3118 | { |
| 3119 | TCmdString cmd; |
| 3120 | |
| 3121 | cmd.bCmd = CMD_STRING; |
| 3122 | CopyUtf8(cmd.str, pszStr, sizeof(cmd.str)); |
| 3123 | multi_send_msg_packet(pmask, (byte *)&cmd, strlen(cmd.str) + 2); |
| 3124 | } |
| 3125 | |
| 3126 | void delta_close_portal(int pnum) |
| 3127 | { |
no test coverage detected