From 47c9690a32ad60bad667b9a5320f48c3b626d2a3 Mon Sep 17 00:00:00 2001 From: JJ Date: Sat, 25 Apr 2015 11:46:43 -0400 Subject: [PATCH] Don't garble # commands. --- zone/client.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zone/client.cpp b/zone/client.cpp index ad1863a05..fdab00a3c 100644 --- a/zone/client.cpp +++ b/zone/client.cpp @@ -7491,6 +7491,10 @@ void Client::GarbleMessage(char *message, uint8 variance) const char delimiter = 0x12; int delimiter_count = 0; + // Don't garble # commands + if (message[0] == '#') + return; + for (size_t i = 0; i < strlen(message); i++) { // Client expects hex values inside of a text link body if (message[i] == delimiter) {