diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index 9392ec2ac59..4130bd2450e 100644 --- a/code/game/objects/items/weapons/handcuffs.dm +++ b/code/game/objects/items/weapons/handcuffs.dm @@ -105,9 +105,11 @@ /obj/item/weapon/restraints/handcuffs/cable/red icon_state = "cuff_red" + item_state = "cuff_red" /obj/item/weapon/restraints/handcuffs/cable/yellow icon_state = "cuff_yellow" + item_state = "cuff_yellow" /obj/item/weapon/restraints/handcuffs/cable/blue icon_state = "cuff_blue" @@ -115,18 +117,23 @@ /obj/item/weapon/restraints/handcuffs/cable/green icon_state = "cuff_green" + item_state = "coil_green" /obj/item/weapon/restraints/handcuffs/cable/pink icon_state = "cuff_pink" + item_state = "cuff_pink" /obj/item/weapon/restraints/handcuffs/cable/orange icon_state = "cuff_orange" + item_state = "cuff_orange" /obj/item/weapon/restraints/handcuffs/cable/cyan icon_state = "cuff_cyan" + item_state = "cuff_cyan" /obj/item/weapon/restraints/handcuffs/cable/white icon_state = "cuff_white" + item_state = "cuff_white" /obj/item/weapon/restraints/handcuffs/alien icon_state = "handcuffAlien" @@ -321,7 +328,7 @@ icon_state = "bola_r" breakouttime = 70 weaken = 1 - + /obj/item/weapon/restraints/legcuffs/bola/cult //cult variant, comes with armament talisman name = "nar'sian bola" desc = "A strong bola, bound with dark magic. Throw it to trip and slow your victim." diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index 6586de7fb4b..38d05de6955 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -525,8 +525,9 @@ var/global/list/datum/stack_recipe/cable_coil_recipes = list ( \ /obj/item/stack/cable_coil/update_icon() - if (!item_color) + if(!item_color) item_color = pick("red", "yellow", "blue", "green") + item_state = "coil_[item_color]" if(amount == 1) icon_state = "coil_[item_color]1" name = "cable piece" diff --git a/icons/mob/inhands/items_lefthand.dmi b/icons/mob/inhands/items_lefthand.dmi index e4bb3a035c8..c70f29f07f7 100644 Binary files a/icons/mob/inhands/items_lefthand.dmi and b/icons/mob/inhands/items_lefthand.dmi differ diff --git a/icons/mob/inhands/items_righthand.dmi b/icons/mob/inhands/items_righthand.dmi index 288dedf21f4..d39464c712c 100644 Binary files a/icons/mob/inhands/items_righthand.dmi and b/icons/mob/inhands/items_righthand.dmi differ