*laugh maniacally*

This commit is contained in:
MarcEricMartel
2023-11-01 06:17:58 -04:00
parent 88a8553608
commit 6570ce1302
3 changed files with 0 additions and 23 deletions

View File

@@ -963,23 +963,6 @@ std::vector<char*> netprot::recvPacks(SOCKET sock, Buffer* buf) {
len += bytes;
end = len;
for (int x = 0; x < len; ++x)
switch (buf->ptr[x]) {
case '\0':
std::putchar('n');
break;
case '\r':
std::putchar('i');
break;
case '\n':
std::putchar('a');
break;
default:
std::putchar(buf->ptr[x]);
break;
}
std::puts("");
while (true) {
int cmp = 0;