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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user