mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 05:30:05 +01:00
9 lines
275 B
Plaintext
9 lines
275 B
Plaintext
/obj/effect/mine/shrapnel/human_only
|
|
name = "sophisticated shrapnel mine"
|
|
desc = "A deadly mine, this one seems to be modified to trigger for humans only?"
|
|
|
|
/obj/effect/mine/shrapnel/human_only/on_entered(datum/source, atom/movable/AM)
|
|
if(!ishuman(AM))
|
|
return
|
|
. = ..()
|