Fixes #8696, and updates other usages of drop_item() where appropriate.
This commit is contained in:
mwerezak
2015-03-31 19:40:04 -04:00
parent 398459c2e7
commit 01ce8d4a1f
11 changed files with 11 additions and 13 deletions

View File

@@ -225,7 +225,7 @@
/obj/machinery/seed_storage/proc/add(var/obj/item/seeds/O as obj)
if (istype(O.loc, /mob))
var/mob/user = O.loc
user.drop_item(O)
user.remove_from_mob(O)
else if(istype(O.loc,/obj/item/weapon/storage))
var/obj/item/weapon/storage/S = O.loc
S.remove_from_storage(O, src)