mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user