fix oversight that makes pockets not get checked for heretic sacrifices (#9739)

This commit is contained in:
Theos
2020-09-17 17:27:46 -04:00
committed by GitHub
parent f183779744
commit 927c52b15b

View File

@@ -499,7 +499,7 @@
//GetAllContents that is reasonable and not stupid
/mob/living/carbon/proc/get_all_gear()
var/list/processing_list = get_equipped_items() + held_items
var/list/processing_list = get_equipped_items(TRUE) + held_items
listclearnulls(processing_list) // handles empty hands
var/i = 0
while(i < length(processing_list) )