From 1c968e6ebe2ce62737c4366820412e7a1f4b72fb Mon Sep 17 00:00:00 2001 From: Xantholne Date: Sun, 20 Dec 2020 16:00:18 -0700 Subject: [PATCH] period equals --- code/game/objects/items/storage/belt.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index f24b0c0ccf..abd862736b 100755 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -869,37 +869,37 @@ var/obj/item/storage/belt/sabre/twin/B = S.parent if(istype(B)) playsound(B, 'sound/items/unsheath.ogg', 25, 1) - ..() + . = ..() /obj/item/melee/smith/twohand/katana/on_enter_storage(datum/component/storage/S) var/obj/item/storage/belt/sabre/twin/B = S.parent if(istype(B)) playsound(B, 'sound/items/sheath.ogg', 25, 1) - ..() + . = ..() /obj/item/melee/smith/wakizashi/on_exit_storage(datum/component/storage/S) var/obj/item/storage/belt/sabre/twin/B = S.parent if(istype(B)) playsound(B, 'sound/items/unsheath.ogg', 25, 1) - ..() + . = ..() /obj/item/melee/smith/wakizashi/on_enter_storage(datum/component/storage/S) var/obj/item/storage/belt/sabre/twin/B = S.parent if(istype(B)) playsound(B, 'sound/items/sheath.ogg', 25, 1) - ..() + . = ..() /obj/item/melee/bokken/on_exit_storage(datum/component/storage/S) var/obj/item/storage/belt/sabre/twin/B = S.parent if(istype(B)) playsound(B, 'sound/items/unsheath.ogg', 25, 1) - ..() + . = ..() /obj/item/melee/bokken/on_enter_storage(datum/component/storage/S) var/obj/item/storage/belt/sabre/twin/B = S.parent if(istype(B)) playsound(B, 'sound/items/sheath.ogg', 25, 1) - ..() + . = ..() /obj/item/storage/belt/plant name = "botanical belt"