mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-30 20:13:53 +00:00
Fix for ghosts being able to stuff things in to crematoriums
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3297 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -316,7 +316,7 @@
|
||||
return
|
||||
|
||||
/obj/structure/c_tray/MouseDrop_T(atom/movable/O as mob|obj, mob/user as mob)
|
||||
if ((!( istype(O, /atom/movable) ) || O.anchored || get_dist(user, src) > 1 || get_dist(user, O) > 1 || user.contents.Find(src)))
|
||||
if ((!( istype(O, /atom/movable) ) || O.anchored || get_dist(user, src) > 1 || get_dist(user, O) > 1 || user.contents.Find(src) || istype(user, /mob/dead)))
|
||||
return
|
||||
O.loc = src.loc
|
||||
if (user != O)
|
||||
|
||||
Reference in New Issue
Block a user