diff options
author | panikon <panikon@zoho.com> | 2014-04-19 18:28:51 -0300 |
---|---|---|
committer | panikon <panikon@zoho.com> | 2014-04-19 18:28:51 -0300 |
commit | d57781cee04e99fa8be7c209a75b949a57eba59d (patch) | |
tree | 1727620e892958802e9319ac23d74de51e955e64 /src/map/intif.c | |
parent | 11d2525f4a7a358030caaa17fe82dc7bab8fe63f (diff) | |
download | hercules-d57781cee04e99fa8be7c209a75b949a57eba59d.tar.gz hercules-d57781cee04e99fa8be7c209a75b949a57eba59d.tar.bz2 hercules-d57781cee04e99fa8be7c209a75b949a57eba59d.tar.xz hercules-d57781cee04e99fa8be7c209a75b949a57eba59d.zip |
Fixed issue: 8150
* http://hercules.ws/board/tracker/issue-8150-cash-shop-updating-quantity-bug/
* Also fixed issue where when using ATitem to get more than one pet egg would result on getting only one egg
* Changed packet 0x3880 structure now it also contains pet class and dropped flag from this packet, it was pointless
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index 40ceda917..0f65daa6b 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -1316,7 +1316,7 @@ void intif_parse_GuildMasterChanged(int fd) { // Request pet creation void intif_parse_CreatePet(int fd) { - pet->get_egg(RFIFOL(fd,2),RFIFOL(fd,7),RFIFOB(fd,6)); + pet->get_egg(RFIFOL(fd,2), RFIFOL(fd,6), RFIFOB(fd,8)); } // ACK pet data @@ -2298,7 +2298,7 @@ void intif_defaults(void) { -1,-1, 7, 7, 7,11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, //0x3850 Auctions [Zephyrus] itembound[Akinari] -1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, //0x3860 Quests [Kevin] [Inkfish] -1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 3, 3, 0, //0x3870 Mercenaries [Zephyrus] / Elemental [pakpil] - 11,-1, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, //0x3880 + 12,-1, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, //0x3880 -1,-1, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, //0x3890 Homunculus [albator] }; |