diff --git a/code/game/objects/effects/spawners/bundle.dm b/code/game/objects/effects/spawners/bundle.dm index 3e8e2d070fe..f6115e2f5b1 100644 --- a/code/game/objects/effects/spawners/bundle.dm +++ b/code/game/objects/effects/spawners/bundle.dm @@ -63,6 +63,15 @@ /obj/item/clothing/under/suit/black, /obj/item/clothing/head/that) +/obj/effect/spawner/bundle/costume/referee + name = "referee costume spawner" + items = list( + /obj/item/clothing/mask/whistle, + /obj/item/clothing/gloves/color/latex, + /obj/item/clothing/shoes/laceup, + /obj/item/clothing/head/soft/black, + /obj/item/clothing/under/costume/referee) + /obj/effect/spawner/bundle/costume/highlander name = "highlander costume spawner" items = list( diff --git a/code/modules/clothing/under/costume.dm b/code/modules/clothing/under/costume.dm index 8f0f959a936..8ff3d3e8455 100644 --- a/code/modules/clothing/under/costume.dm +++ b/code/modules/clothing/under/costume.dm @@ -282,3 +282,10 @@ icon_state = "SwagOutfit" inhand_icon_state = "SwagOutfit" can_adjust = FALSE + +/obj/item/clothing/under/costume/referee + name = "referee uniform" + desc = "A standard black and white striped uniform to signal authority." + icon_state = "referee" + inhand_icon_state = "referee" + can_adjust = FALSE diff --git a/code/modules/vending/_vending.dm b/code/modules/vending/_vending.dm index ed2aa566eb6..f6018e2d957 100644 --- a/code/modules/vending/_vending.dm +++ b/code/modules/vending/_vending.dm @@ -12,8 +12,6 @@ products = list() contraband = list() premium = list() - -IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY CANISTER CHARGES in vending_items.dm */ #define MAX_VENDING_INPUT_AMOUNT 30 @@ -1280,5 +1278,3 @@ GLOBAL_LIST_EMPTY(vending_products) slogan_list = list("[GLOB.deity] says: It's your divine right to buy!") add_filter("vending_outline", 9, list("type" = "outline", "color" = COLOR_VERY_SOFT_YELLOW)) add_filter("vending_rays", 10, list("type" = "rays", "size" = 35, "color" = COLOR_VIVID_YELLOW)) - - diff --git a/code/modules/vending/autodrobe.dm b/code/modules/vending/autodrobe.dm index b0180457bf2..50e399707d5 100644 --- a/code/modules/vending/autodrobe.dm +++ b/code/modules/vending/autodrobe.dm @@ -112,6 +112,8 @@ /obj/item/clothing/head/cueball = 1, /obj/item/clothing/under/suit/white_on_white = 1, /obj/item/clothing/under/costume/sailor = 1, + /obj/item/clothing/under/costume/referee = 1, + /obj/item/clothing/mask/whistle = 1, /obj/item/clothing/head/delinquent = 1, /obj/item/clothing/head/wig/random = 3, /obj/item/clothing/head/shrine_wig = 1, diff --git a/code/modules/vending/clothesmate.dm b/code/modules/vending/clothesmate.dm index 4fc15564dc0..c1fcac9f2f3 100644 --- a/code/modules/vending/clothesmate.dm +++ b/code/modules/vending/clothesmate.dm @@ -1,4 +1,3 @@ -//DON'T FORGET TO CHANGE THE REFILL SIZE IF YOU CHANGE THE MACHINE'S CONTENTS! /obj/machinery/vending/clothing name = "ClothesMate" //renamed to make the slogan rhyme desc = "A vending machine for clothing." diff --git a/icons/mob/clothing/under/costume.dmi b/icons/mob/clothing/under/costume.dmi index 612100da7a0..e761b19d0e0 100644 Binary files a/icons/mob/clothing/under/costume.dmi and b/icons/mob/clothing/under/costume.dmi differ diff --git a/icons/obj/clothing/under/costume.dmi b/icons/obj/clothing/under/costume.dmi index 91a83560e8d..1449c24dabc 100644 Binary files a/icons/obj/clothing/under/costume.dmi and b/icons/obj/clothing/under/costume.dmi differ