diff options
author | Er_Maqui <er_maqui@darkbolt.net> | 2015-10-12 16:37:43 +0200 |
---|---|---|
committer | Er_Maqui <er_maqui@darkbolt.net> | 2015-10-12 16:37:43 +0200 |
commit | c5568987878e2cb429d720e489a010ba501334ce (patch) | |
tree | c07a5a33838a624fb2e420adae689625b3a6244f /src/map/clif.c | |
parent | 3ca033652637cb529b8ca4d8a4f7fb3f37080fb2 (diff) | |
download | hercules-c5568987878e2cb429d720e489a010ba501334ce.tar.gz hercules-c5568987878e2cb429d720e489a010ba501334ce.tar.bz2 hercules-c5568987878e2cb429d720e489a010ba501334ce.tar.xz hercules-c5568987878e2cb429d720e489a010ba501334ce.zip |
- Error message when talking to a pre-defined channel and you aren't on the channel.
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 9c7d327e6..db1f1af73 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -10130,6 +10130,9 @@ void clif_parse_WisMessage(int fd, struct map_session_data* sd) clif->message(fd, msg_fd(fd,1402)); } return; + } else if (strcmpi(&chname[1], channel->config->ally_name) == 0) { + clif->message(fd, msg_fd(fd,1500)); // You're not allowed to talk on this channel + return; } } |