diff options
author | Haruna <haru@dotalux.com> | 2015-08-07 17:29:11 +0200 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2015-08-07 17:29:11 +0200 |
commit | e621d75bab0ebdee8f2708b5cd355a0965f709f3 (patch) | |
tree | 9b567dca4e24545377902f21d2660b742af2f13d /src | |
parent | 6424873bd99d04e91083fb4331ba365e2987aff4 (diff) | |
parent | 5ab649f62fba634bb362125ee7c9f0590385d64e (diff) | |
download | hercules-e621d75bab0ebdee8f2708b5cd355a0965f709f3.tar.gz hercules-e621d75bab0ebdee8f2708b5cd355a0965f709f3.tar.bz2 hercules-e621d75bab0ebdee8f2708b5cd355a0965f709f3.tar.xz hercules-e621d75bab0ebdee8f2708b5cd355a0965f709f3.zip |
Merge pull request #599 from Milchdealer/accinfofix
Changed clif->message with clif->messagecolor_self as this will not c…
Diffstat (limited to 'src')
-rw-r--r-- | src/map/intif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index 6c40d5109..26fd1949c 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -2152,7 +2152,7 @@ void intif_parse_MessageToFD(int fd) { if( sd && sd->bl.id == aid ) { char msg[512]; safestrncpy(msg, (char*)RFIFOP(fd,12), RFIFOW(fd,2) - 12); - clif->message(u_fd,msg); + clif->messagecolor_self(u_fd, COLOR_DEFAULT ,msg); } } |