From 7bb93d238d3809ea8f2b4ce0c3316e8cd007ce75 Mon Sep 17 00:00:00 2001 From: listerla <57296132+listerla@users.noreply.github.com> Date: Tue, 13 Dec 2022 06:16:40 -0500 Subject: [PATCH] Reduces handheld mirror size to small (#15265) --- code/game/objects/structures/mirror.dm | 3 ++- html/changelogs/handmirror.yml | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/handmirror.yml diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index 46d87b69c79..af0ca9729d2 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -116,7 +116,7 @@ if(mirror.pixel_y > 0) dir = SOUTH - else if (mirror.pixel_y < 0) + else if (mirror.pixel_y < 0) dir = NORTH pixel_x = mirror.pixel_x @@ -174,6 +174,7 @@ desc = "A SalonPro Nano-Mirror(TM) brand mirror! Now a portable version." icon = 'icons/obj/cosmetics.dmi' icon_state = "mirror" + w_class = ITEMSIZE_SMALL /obj/item/mirror/attack_self(mob/user as mob) if(user.mind) diff --git a/html/changelogs/handmirror.yml b/html/changelogs/handmirror.yml new file mode 100644 index 00000000000..795b4bd3df0 --- /dev/null +++ b/html/changelogs/handmirror.yml @@ -0,0 +1,6 @@ +author: listerla + +delete-after: True + +changes: + - tweak: "Reduced handheld mirror's size." \ No newline at end of file