From 73a74697395aba4c8d3bf8abb5f9b0c8b1378f1b Mon Sep 17 00:00:00 2001 From: Reo Lozzot <84661000+ReoDaProtovali@users.noreply.github.com> Date: Tue, 12 May 2026 19:11:18 -0500 Subject: [PATCH] Pleasantry (#19453) --- code/game/objects/structures/stool_bed_chair_nest/stools.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/structures/stool_bed_chair_nest/stools.dm b/code/game/objects/structures/stool_bed_chair_nest/stools.dm index 0b673832f1..ee88c1d34c 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/stools.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/stools.dm @@ -61,6 +61,10 @@ name = "[material.display_name] [initial(name)]" desc = "A stool. Apply butt with care. It's made of [material.use_name]." +/obj/item/stool/dropped(mob/user, equipping, slot) + . = ..() + set_dir(user.dir) //Face the way we're facing when we drop it. + /obj/item/stool/proc/add_padding(padding_type) padding_material = get_material_by_name(padding_type) update_icon()