diff --git a/code/game/objects/items/tajara.dm b/code/game/objects/items/tajara.dm index 0f4be8a5149..eb5421b6292 100644 --- a/code/game/objects/items/tajara.dm +++ b/code/game/objects/items/tajara.dm @@ -8,6 +8,10 @@ cigarette_to_spawn = /obj/item/clothing/mask/smokable/cigarette/adhomai can_hold = list(/obj/item/clothing/mask/smokable/cigarette, /obj/item/flame/lighter, /obj/item/trash/cigbutt, /obj/item/tajcard) +/obj/item/storage/box/fancy/cigarettes/pra/update_icon() + var/card_count = instances_of_type_in_list(new /obj/item/tajcard, src.contents) //having cards in here doesn't count for icon + icon_state = "[initial(icon_state)][contents.len - card_count]" + /obj/item/storage/box/fancy/cigarettes/pra/fill() ..() new /obj/item/tajcard(src) diff --git a/html/changelogs/labourers_choice.yml b/html/changelogs/labourers_choice.yml new file mode 100644 index 00000000000..62b60671799 --- /dev/null +++ b/html/changelogs/labourers_choice.yml @@ -0,0 +1,6 @@ +author: mikomyazaki + +delete-after: True + +changes: + - bugfix: "Labourer's Choice cigarette packet will no longer go invisible after being opened." \ No newline at end of file