diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 63424cf7a9e..5f68e8f0022 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -54,7 +54,7 @@ /obj/item/clothing/Initialize(mapload) if(clothing_flags & VOICEBOX_TOGGLABLE) - actions_types += /datum/action/item_action/toggle_voice_box + actions_types += list(/datum/action/item_action/toggle_voice_box) . = ..() AddElement(/datum/element/venue_price, FOOD_PRICE_CHEAP) if(can_be_bloody && ((body_parts_covered & FEET) || (flags_inv & HIDESHOES))) diff --git a/code/modules/clothing/masks/bandana.dm b/code/modules/clothing/masks/bandana.dm index a6719556b3f..cafe5d397f2 100644 --- a/code/modules/clothing/masks/bandana.dm +++ b/code/modules/clothing/masks/bandana.dm @@ -211,7 +211,7 @@ /obj/item/clothing/mask/facescarf name = "facescarf" desc = "Cover your face like in the cowboy movies. It also has breathtube so you can wear it everywhere!" - actions_types = /datum/action/item_action/adjust + actions_types = list(/datum/action/item_action/adjust) icon_state = "facescarf" inhand_icon_state = "greyscale_facescarf" alternate_worn_layer = BACK_LAYER