diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm index ea1de0376c6..06894734078 100644 --- a/code/datums/supplypacks.dm +++ b/code/datums/supplypacks.dm @@ -1024,7 +1024,8 @@ var/list/all_supply_groups = list(supply_emergency,supply_security,supply_engine /obj/item/clothing/mask/gas/mime, /obj/item/clothing/head/beret, /obj/item/clothing/suit/suspenders, - /obj/item/weapon/reagent_containers/food/drinks/bottle/bottleofnothing) + /obj/item/weapon/reagent_containers/food/drinks/bottle/bottleofnothing, + /obj/item/weapon/storage/backpack/mime) cost = 10 containertype = /obj/structure/closet/crate/secure containername = "standard costumes" diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index 9760307ed6a..aeb1b7724e9 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -237,6 +237,7 @@ Mime selection_color = "#dddddd" default_pda = /obj/item/device/pda/mime + default_backpack = /obj/item/weapon/storage/backpack/mime access = list(access_theatre, access_maint_tunnels) minimal_access = list(access_theatre) diff --git a/code/modules/mob/new_player/preferences_setup.dm b/code/modules/mob/new_player/preferences_setup.dm index 0180b2e82ac..20ce34562d1 100644 --- a/code/modules/mob/new_player/preferences_setup.dm +++ b/code/modules/mob/new_player/preferences_setup.dm @@ -158,7 +158,7 @@ datum/preferences clothes_s.Blend(new /icon('icons/mob/head.dmi', "beret"), ICON_OVERLAY) clothes_s.Blend(new /icon('icons/mob/suit.dmi', "suspenders"), ICON_OVERLAY) if(backbag == 2) - clothes_s.Blend(new /icon('icons/mob/back.dmi', "backpack"), ICON_OVERLAY) + clothes_s.Blend(new /icon('icons/mob/back.dmi', "mimepack"), ICON_OVERLAY) if(backbag == 3) clothes_s.Blend(new /icon('icons/mob/back.dmi', "satchel-norm"), ICON_OVERLAY)