diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-02-05 20:07:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-02-11 03:22:46 +0300 |
commit | 28e1760064ad763d50e1fff92715aaa5b741113a (patch) | |
tree | 0db5cfc0834278b296061530d43b795790c7fcab /src/map | |
parent | 734371e81026b74bad3b6e5c1d9466a1a122669a (diff) | |
download | hercules-28e1760064ad763d50e1fff92715aaa5b741113a.tar.gz hercules-28e1760064ad763d50e1fff92715aaa5b741113a.tar.bz2 hercules-28e1760064ad763d50e1fff92715aaa5b741113a.tar.xz hercules-28e1760064ad763d50e1fff92715aaa5b741113a.zip |
Extend class and level field in packet 0x3035
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/intif.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index 616ad63b0..18b41fe04 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -913,9 +913,9 @@ static int intif_guild_memberinfoshort(int guild_id, int account_id, int char_id WFIFOL(inter_fd, 6) = account_id; WFIFOL(inter_fd,10) = char_id; WFIFOB(inter_fd,14) = online; - WFIFOW(inter_fd,15) = lv; - WFIFOW(inter_fd,17) = class; - WFIFOSET(inter_fd,19); + WFIFOL(inter_fd,15) = lv; + WFIFOL(inter_fd,19) = class; + WFIFOSET(inter_fd,23); return 0; } |