All living mobs can now attempt to pick up cards

Fixes #17560.

Removes ishuman() check, replaces with effective isliving() check, a la
paper bins.
This commit is contained in:
Jack Edge
2016-06-17 09:48:20 +01:00
parent 030911962a
commit 64d6cb636c
+2 -2
View File
@@ -760,8 +760,8 @@
return ..()
/obj/item/toy/cards/deck/MouseDrop(atom/over_object)
var/mob/M = usr
if(!ishuman(usr) || usr.incapacitated() || usr.lying)
var/mob/living/M = usr
if(!istype(M) || usr.incapacitated() || usr.lying)
return
if(Adjacent(usr))
if(over_object == M && loc != M)