diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-03-29 22:53:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-04-07 22:38:35 +0300 |
commit | 0a349742abd855ae4b6edbe8735937768cdfeb07 (patch) | |
tree | 5cd95c4160b719f5fdfe7cfc78dcceb554eb6fd8 /src/map/clif.c | |
parent | 0a5ee140c74989d5fb2cbc9a22150ff66bbcfb07 (diff) | |
download | hercules-0a349742abd855ae4b6edbe8735937768cdfeb07.tar.gz hercules-0a349742abd855ae4b6edbe8735937768cdfeb07.tar.bz2 hercules-0a349742abd855ae4b6edbe8735937768cdfeb07.tar.xz hercules-0a349742abd855ae4b6edbe8735937768cdfeb07.zip |
Add allow call option
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 605362fc5..349e56437 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -17021,6 +17021,9 @@ static void clif_parse_cz_config(int fd, struct map_session_data *sd) hd->homunculus.autofeed = flag; break; } + case CZ_CONFIG_CALL: + sd->status.allow_call = flag; + break; default: ShowWarning("clif_parse_cz_config: Unsupported type has been received (%u).\n", type); return; |