This commit is contained in:
mwerezak
2014-08-25 21:02:57 -04:00
parent b05f9a16ac
commit 9859fc0b00
2 changed files with 2 additions and 2 deletions
@@ -100,7 +100,7 @@
break
if(istype (M, /mob/dead/observer))
continue
if(M.buckled)
if(M.buckled || M.pinned.len)
continue
if(M.client)
@@ -86,7 +86,7 @@
/obj/structure/stool/bed/proc/buckle_mob(mob/M as mob, mob/user as mob)
if (!ticker)
user << "You can't buckle anyone in before the game starts."
if ( !ismob(M) || (get_dist(src, user) > 1) || (M.loc != src.loc) || user.restrained() || user.lying || user.stat || M.buckled || istype(user, /mob/living/silicon/pai) )
if ( !ismob(M) || (get_dist(src, user) > 1) || (M.loc != src.loc) || user.restrained() || user.lying || user.stat || M.buckled || M.pinned.len || istype(user, /mob/living/silicon/pai) )
return
if (istype(M, /mob/living/carbon/slime))