mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
allows buckling animals into shit
This commit is contained in:
@@ -70,9 +70,14 @@
|
||||
|
||||
/obj/structure/bed/proc/buckle_mob(mob/M as mob, mob/user as mob)
|
||||
//writepanic("[__FILE__].[__LINE__] ([src.type])([usr ? usr.ckey : ""]) \\/obj/structure/stool/bed/proc/buckle_mob() called tick#: [world.time]")
|
||||
if(!ismob(M) || isanimal(M) || !Adjacent(user) || (M.loc != src.loc) || user.restrained() || user.lying || user.stat || M.locked_to || istype(user, /mob/living/silicon/pai) )
|
||||
if(!ismob(M) || !Adjacent(user) || (M.loc != src.loc) || user.restrained() || user.lying || user.stat || M.locked_to || istype(user, /mob/living/silicon/pai) )
|
||||
return
|
||||
|
||||
if(isanimal(M))
|
||||
if(M.size <= SIZE_TINY) //Fuck off mice
|
||||
user << "The [M] is too small to buckle in."
|
||||
return
|
||||
|
||||
if(istype(M, /mob/living/carbon/slime))
|
||||
user << "The [M] is too squishy to buckle in."
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user