diff options
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 9ec2f9cfb..bd7af7eb3 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9031,6 +9031,9 @@ void clif_parse_WisMessage(int fd, struct map_session_data* sd) char output[256]; str = message; + // skip codepage indicator, if detected + if( str[0] == '|' && strlen(str) >= 4 ) + str += 3; for( i = 0; i < 10; ++i ) {// Splits the message using '#' as separators split = strchr(str,'#'); |