diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-01-16 22:49:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-01-16 22:49:27 +0300 |
commit | e462513db20365c4a36e32013a3e48b00a1d2b87 (patch) | |
tree | eba673858a3f37f1546680d79cb55308560400a1 /src/emap/script_buildins.c | |
parent | a49ea3708ce03d82b759c0d01d29aca6c5b3cc00 (diff) | |
download | plugin-e462513db20365c4a36e32013a3e48b00a1d2b87.tar.gz plugin-e462513db20365c4a36e32013a3e48b00a1d2b87.tar.bz2 plugin-e462513db20365c4a36e32013a3e48b00a1d2b87.tar.xz plugin-e462513db20365c4a36e32013a3e48b00a1d2b87.zip |
Fix compilation after hercules update.
Diffstat (limited to 'src/emap/script_buildins.c')
-rw-r--r-- | src/emap/script_buildins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c index b5cd601..ed6c6c1 100644 --- a/src/emap/script_buildins.c +++ b/src/emap/script_buildins.c @@ -1204,7 +1204,7 @@ BUILDIN(successRemoveCardsIndex) { // get back the cart in inventory 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); } } } @@ -1261,7 +1261,7 @@ BUILDIN(failedRemoveCardsIndex) if ((flag = pc->additem(sd, &item_tmp, 1, LOG_TYPE_SCRIPT))) { 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); } } } |