diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index e2e287052ff..cb54ae30119 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -59,19 +59,14 @@ set category = "Object" set src in oview(1) - if(config.ghost_interaction) - src.dir = turn(src.dir, 90) - handle_rotation() + if(!usr || !isturf(usr.loc)) + return + if(usr.stat || usr.restrained()) return - else - if(!usr || !isturf(usr.loc)) - return - if(usr.stat || usr.restrained()) - return - src.dir = turn(src.dir, 90) - handle_rotation() - return + src.dir = turn(src.dir, 90) + handle_rotation() + return /obj/structure/stool/bed/chair/AltClick(mob/user) if(user.incapacitated())