Merge pull request #5204 from Menshin/don't_use_force_on_paper_bins

Prevent grabbing paper bins from the other side of the station.
This commit is contained in:
Remie Richards
2014-10-15 11:57:03 +01:00
+1 -1
View File
@@ -14,7 +14,7 @@
/obj/item/weapon/paper_bin/MouseDrop(atom/over_object)
var/mob/M = usr
if(M.restrained() || M.stat)
if(M.restrained() || M.stat || !Adjacent(M))
return
if(over_object == M)