Merge pull request #6597 from Citadel-Station-13/upstream-merge-37510

[MIRROR] Circuits can't throw themselves
This commit is contained in:
deathride58
2018-05-02 01:25:23 +00:00
committed by GitHub
@@ -491,7 +491,7 @@
var/target_y_rel = round(get_pin_data(IC_INPUT, 2))
var/obj/item/A = get_pin_data_as_type(IC_INPUT, 3, /obj/item)
if(!A || A.anchored || A.throwing)
if(!A || A.anchored || A.throwing || A == assembly)
return
if(max_w_class && (A.w_class > max_w_class))