diff options
author | Asheraf <acheraf1998@gmail.com> | 2018-04-18 05:53:48 +0100 |
---|---|---|
committer | Asheraf <acheraf1998@gmail.com> | 2018-04-18 06:29:10 +0100 |
commit | 4686ff6cfcc579f6a1f1700407bbf63318edd2c9 (patch) | |
tree | fe314bcc0c04ce8d77b929669946e85e7fcf3bc6 /src/map/clif.c | |
parent | 7b097da8b433ea3b768b6c306c12801f7ddef0a5 (diff) | |
download | hercules-4686ff6cfcc579f6a1f1700407bbf63318edd2c9.tar.gz hercules-4686ff6cfcc579f6a1f1700407bbf63318edd2c9.tar.bz2 hercules-4686ff6cfcc579f6a1f1700407bbf63318edd2c9.tar.xz hercules-4686ff6cfcc579f6a1f1700407bbf63318edd2c9.zip |
Enable new drop packet for PACKETVER >= 20180418
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 60f4b18c0..448b0639d 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -819,7 +819,7 @@ void clif_dropflooritem(struct flooritem_data* fitem) { p.subX = fitem->subx; p.subY = fitem->suby; p.count = fitem->item_data.amount; -#ifdef PACKETVER_ZERO +#if defined(PACKETVER_ZERO) || PACKETVER >= 20180418 if (fitem->showdropeffect) { p.showdropeffect = itemdb_showdropeffect(fitem->item_data.nameid); p.dropeffectmode = itemdb_dropeffectmode(fitem->item_data.nameid); |