From 36b1e0b6136fd7a1773925e9b3d65c2cfbe5f171 Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Sun, 11 Oct 2020 00:20:03 -0400 Subject: [PATCH] uh uh --- code/game/objects/items/stunbaton.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/stunbaton.dm b/code/game/objects/items/stunbaton.dm index c69704e204..caad287e6c 100644 --- a/code/game/objects/items/stunbaton.dm +++ b/code/game/objects/items/stunbaton.dm @@ -249,13 +249,13 @@ return mutable_appearance(icon_file, "-stunsword") /obj/item/melee/baton/stunsword/on_exit_storage(datum/component/storage/S) - var/obj/item/storage/belt/sabre/B = S.parent + var/obj/item/storage/belt/sabre/secbelt/B = S.parent if(istype(B)) playsound(B, 'sound/items/unsheath.ogg', 25, 1) ..() /obj/item/melee/baton/stunsword/on_enter_storage(datum/component/storage/S) - var/obj/item/storage/belt/sabre/B = S.parent + var/obj/item/storage/belt/sabre/secbelt/B = S.parent if(istype(B)) playsound(B, 'sound/items/sheath.ogg', 25, 1) ..()