Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Jul 5, 2023
1 parent c89e262 commit 6933aec
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions code/game/objects/structures/stool_bed_chair_nest/bed.dm
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,20 @@
return
..()

/obj/structure/bed/roller/Collided(atom/movable/AM)
if(!isxeno(AM))
return ..()

if(buckled_mob && buckled_mob.stat != DEAD)
return ..()

if(buckled_bodybag)
var/mob/mob_in_bodybag = locate(/mob) in buckled_bodybag
if(mob_in_bodybag && mob_in_bodybag.stat != DEAD)
return ..()

return

/obj/item/roller
name = "roller bed"
desc = "A collapsed roller bed that can be carried around."
Expand Down

0 comments on commit 6933aec

Please sign in to comment.