Fixes plastic golems ventcrawling with items in pockets (#39968)

* Minor bugfixes

* reverts research.dm change
This commit is contained in:
81Denton
2018-08-31 08:29:18 +02:00
committed by Emmett Gaines
parent 2dd4428635
commit 048aea0d6b

View File

@@ -57,7 +57,7 @@ GLOBAL_LIST_INIT(ventcrawl_machinery, typecacheof(list(
if(iscarbon(src) && ventcrawler < 2)//It must have atleast been 1 to get this far
var/failed = 0
var/list/items_list = get_equipped_items()
var/list/items_list = get_equipped_items(include_pockets = TRUE)
if(items_list.len)
failed = 1
for(var/obj/item/I in held_items)