From 9e07708cb3ddd592aa9b600e43a0938c615b3c1d Mon Sep 17 00:00:00 2001 From: Chinsky Date: Thu, 26 Feb 2015 14:40:50 +0300 Subject: [PATCH] Fixes #8241 rollerbeds not collapsing due to a runtime --- code/game/objects/structures/stool_bed_chair_nest/bed.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index a53ceff7cbd..6d50066a748 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -138,8 +138,8 @@ density = 1 icon_state = "up" else - buckled_mob.pixel_y = 0 - buckled_mob.old_y = 0 + M.pixel_y = 0 + M.old_y = 0 density = 0 icon_state = "down"