mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
Processor conveyor actions now only check if humans are lying down (#36207)
Co-authored-by: SECBATON-GRIFFON <kanef9x@protonmail.com>
This commit is contained in:
@@ -250,9 +250,9 @@
|
||||
if(items_transferred == 0 && !is_full())
|
||||
return FALSE
|
||||
else
|
||||
if(isliving(AM))
|
||||
var/mob/living/L = AM
|
||||
if(!L.lying)
|
||||
if(ishuman(AM))
|
||||
var/mob/living/carbon/human/H = AM
|
||||
if(!H.lying)
|
||||
return FALSE
|
||||
var/datum/food_processor_process/P = select_recipe(AM)
|
||||
if (!P)
|
||||
|
||||
Reference in New Issue
Block a user