diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-20 00:09:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-20 00:09:40 +0300 |
commit | ab092915707f455e8d90a75b5f9138c6d50cf2d9 (patch) | |
tree | a553c154aaf00145b8a528bc560fc745a8ab42e8 /src/emap/clif.c | |
parent | f63584457f44a32e7e62587ac4802a6d31bb8408 (diff) | |
download | evol-hercules-ab092915707f455e8d90a75b5f9138c6d50cf2d9.tar.gz evol-hercules-ab092915707f455e8d90a75b5f9138c6d50cf2d9.tar.bz2 evol-hercules-ab092915707f455e8d90a75b5f9138c6d50cf2d9.tar.xz evol-hercules-ab092915707f455e8d90a75b5f9138c6d50cf2d9.zip |
Send party settings packet after party info packet.s20160820
This allow always know party settings without changing it.
Diffstat (limited to 'src/emap/clif.c')
-rw-r--r-- | src/emap/clif.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/emap/clif.c b/src/emap/clif.c index d211a83..63b7cc0 100644 --- a/src/emap/clif.c +++ b/src/emap/clif.c @@ -1730,3 +1730,12 @@ void eclif_parse_WalkToXY(int fd, unit->walktoxy(&sd->bl, x, y, 4); } } + +void eclif_party_info_post(struct party_data *p, + struct map_session_data *sd) +{ + if (sd) + { + clif->party_option(p, sd, 2); + } +} |