diff options
author | Haru <haru@dotalux.com> | 2018-01-14 15:22:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-14 15:22:13 +0100 |
commit | adaebd02567d3034f88acda3a99c56358e1adc13 (patch) | |
tree | 2e379dc9a740a5c453aa845fc9387e95f1d10747 /src/map/atcommand.c | |
parent | be6b748363717519019cd606d2013868ae6d9378 (diff) | |
parent | 6612f0bb52d11c2a097f80174cbbb2e98e2ff4aa (diff) | |
download | hercules-adaebd02567d3034f88acda3a99c56358e1adc13.tar.gz hercules-adaebd02567d3034f88acda3a99c56358e1adc13.tar.bz2 hercules-adaebd02567d3034f88acda3a99c56358e1adc13.tar.xz hercules-adaebd02567d3034f88acda3a99c56358e1adc13.zip |
Merge pull request #1939 from Asheraf/zero_drop_packet
Add support for new drop packet 0xadd for zero clients
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 1590c3f0c..aa25f11d6 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -5457,7 +5457,7 @@ void atcommand_getring(struct map_session_data* sd) { if((flag = pc->additem(sd,&item_tmp,1,LOG_TYPE_COMMAND))) { clif->additem(sd,0,0,flag); - map->addflooritem(&sd->bl, &item_tmp, 1, sd->bl.m, sd->bl.x, sd->bl.y, 0, 0, 0, 0); + map->addflooritem(&sd->bl, &item_tmp, 1, sd->bl.m, sd->bl.x, sd->bl.y, 0, 0, 0, 0, false); } } |