Fixed several things.

This commit is contained in:
SkyMarshal
2011-12-27 13:44:52 -07:00
parent cfbb6eb704
commit 08ff9b06e7
6 changed files with 15 additions and 13 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ var/list/CustomItemList = list(
var/path = Entry[3]
var/obj/item/Item = new path()
if(istype(M.back,/obj/item/weapon/storage) && M.back:len < M.back:storage_slots) // Try to place it in something on the mob's back first
if(istype(M.back,/obj/item/weapon/storage) && M.back:contents.len < M.back:storage_slots) // Try to place it in something on the mob's back first
Item.loc = M.back
ok = 1
else