From 59c99d8d4a4dac29b6e4eca76b61eacd47c384d9 Mon Sep 17 00:00:00 2001 From: Kabramen <46802162+Kabramen@users.noreply.github.com> Date: Tue, 26 Apr 2022 17:20:48 -0300 Subject: [PATCH 1/2] Fitting Overalls for vendors and loadout --- modular_citadel/code/game/machinery/vending.dm | 1 + modular_citadel/code/modules/client/loadout/uniform.dm | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/modular_citadel/code/game/machinery/vending.dm b/modular_citadel/code/game/machinery/vending.dm index efbaa9f95..1763fa41d 100644 --- a/modular_citadel/code/game/machinery/vending.dm +++ b/modular_citadel/code/game/machinery/vending.dm @@ -63,6 +63,7 @@ /obj/item/clothing/under/polychromic/bulge = 3, /obj/item/clothing/under/latexhalf = 3, /obj/item/clothing/under/latexfull = 3, + /obj/item/clothing/under/raccveralls = 3, /obj/item/clothing/suit/maidapron = 3, /obj/item/clothing/under/corset = 3, /obj/item/clothing/under/jabroni = 3, diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index ac65dfe85..df09470ef 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -523,4 +523,10 @@ name = "Tunic" category = SLOT_W_UNIFORM path = /obj/item/clothing/under/tunic + cost = 1 + +/datum/gear/overalls + name = "form fitting overalls" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/raccveralls cost = 1 \ No newline at end of file From d9ff0a10bba711b86daf3078d1d71fa7c132a1e2 Mon Sep 17 00:00:00 2001 From: Kabramen <46802162+Kabramen@users.noreply.github.com> Date: Tue, 26 Apr 2022 18:05:42 -0300 Subject: [PATCH 2/2] Move the overalls from the kinkmate to the clothesmate --- code/modules/vending/clothesmate.dm | 1 + modular_citadel/code/game/machinery/vending.dm | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vending/clothesmate.dm b/code/modules/vending/clothesmate.dm index 5ceb898cf..69a0165bc 100644 --- a/code/modules/vending/clothesmate.dm +++ b/code/modules/vending/clothesmate.dm @@ -133,6 +133,7 @@ /obj/item/clothing/head/cowboyhat/pink = 3, /obj/item/clothing/shoes/cowboyboots = 3, /obj/item/clothing/shoes/cowboyboots/black = 3, + /obj/item/clothing/under/raccveralls = 3, /obj/item/clothing/under/polychromic/vsweater = 3) contraband = list(/obj/item/clothing/under/syndicate/tacticool = 3, /obj/item/clothing/under/syndicate/tacticool/skirt = 3, diff --git a/modular_citadel/code/game/machinery/vending.dm b/modular_citadel/code/game/machinery/vending.dm index 1763fa41d..efbaa9f95 100644 --- a/modular_citadel/code/game/machinery/vending.dm +++ b/modular_citadel/code/game/machinery/vending.dm @@ -63,7 +63,6 @@ /obj/item/clothing/under/polychromic/bulge = 3, /obj/item/clothing/under/latexhalf = 3, /obj/item/clothing/under/latexfull = 3, - /obj/item/clothing/under/raccveralls = 3, /obj/item/clothing/suit/maidapron = 3, /obj/item/clothing/under/corset = 3, /obj/item/clothing/under/jabroni = 3,