From def3b6c76204f4c338e78ae17035625f03a1b9fc Mon Sep 17 00:00:00 2001 From: Atermonera Date: Mon, 13 Mar 2023 23:45:38 -0800 Subject: [PATCH 1/2] Merge pull request #9030 from Ilysen/if-i-dont-do-a-small-thing-here-and-there-im-gonna-melt Fixes a small hiccup in cable coil examine text --- code/modules/power/cable.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index c850085bbd5..de42f2ba06f 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -499,6 +499,7 @@ var/list/possible_cable_coil_colours = list( amount = MAXCOIL max_amount = MAXCOIL color = COLOR_RED + gender = NEUTER desc = "A coil of power cable." throwforce = 10 w_class = ITEMSIZE_SMALL @@ -509,6 +510,7 @@ var/list/possible_cable_coil_colours = list( item_state = "coil" attack_verb = list("whipped", "lashed", "disciplined", "flogged") stacktype = /obj/item/stack/cable_coil + singular_name = "length" drop_sound = 'sound/items/drop/accessory.ogg' pickup_sound = 'sound/items/pickup/accessory.ogg' tool_qualities = list(TOOL_CABLE_COIL)