diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 1cb25fad69..f67cd39eb6 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -6047,7 +6047,8 @@ bool pc_dropitem(map_session_data *sd,int n,int amount) return false; } - if (!map_addflooritem(&sd->inventory.u.items_inventory[n], amount, sd->bl.m, sd->bl.x, sd->bl.y, 0, 0, 0, 2, 0)) + // bypass drop restriction in map_addflooritem because we've already checked it above + if (!map_addflooritem(&sd->inventory.u.items_inventory[n], amount, sd->bl.m, sd->bl.x, sd->bl.y, 0, 0, 0, 2|4, 0)) return false; pc_delitem(sd, n, amount, 1, 0, LOG_TYPE_PICKDROP_PLAYER);