From 784c08dc7598710e90d3607d50611bd4537f2329 Mon Sep 17 00:00:00 2001 From: iloveyoulots <66392489+iloveyoulots@users.noreply.github.com> Date: Wed, 13 Jan 2021 02:03:10 +0000 Subject: [PATCH 1/2] increases kinkmate contraband amounts --- modular_citadel/code/game/machinery/vending.dm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modular_citadel/code/game/machinery/vending.dm b/modular_citadel/code/game/machinery/vending.dm index f6aaf436..3f9848f9 100644 --- a/modular_citadel/code/game/machinery/vending.dm +++ b/modular_citadel/code/game/machinery/vending.dm @@ -64,17 +64,17 @@ contraband = list(/obj/item/restraints/handcuffs/fake/kinky = 5, /obj/item/clothing/neck/petcollar = 5, /obj/item/clothing/under/mankini = 1, - /obj/item/dildo/flared/huge = 1, - /obj/item/clothing/head/dominatrixcap = 1, - /obj/item/mesmetron = 1, - /obj/item/bdsm_whip = 1, - /obj/item/clothing/mask/muzzle = 1 + /obj/item/dildo/flared/huge = 3, + /obj/item/clothing/head/dominatrixcap = 3, + /obj/item/mesmetron = 3, + /obj/item/bdsm_whip = 3, + /obj/item/clothing/mask/muzzle = 3 ) premium = list( /obj/item/electropack/shockcollar = 3, - /obj/item/clothing/neck/petcollar/locked = 1, - /obj/item/restraints/handcuffs/rope = 1, - /obj/item/leash = 1, + /obj/item/clothing/neck/petcollar/locked = 3, + /obj/item/restraints/handcuffs/rope = 3, + /obj/item/leash = 3, /obj/item/clothing/mask/muzzle/ballgag = 3 ) refill_canister = /obj/item/vending_refill/kink From 900fa895c98f9fdc2a2391492ca8c28066481e17 Mon Sep 17 00:00:00 2001 From: iloveyoulots <66392489+iloveyoulots@users.noreply.github.com> Date: Wed, 13 Jan 2021 02:03:56 +0000 Subject: [PATCH 2/2] fixes fake cuffs in the kinkmate --- modular_citadel/code/game/machinery/vending.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/game/machinery/vending.dm b/modular_citadel/code/game/machinery/vending.dm index 3f9848f9..17947ae6 100644 --- a/modular_citadel/code/game/machinery/vending.dm +++ b/modular_citadel/code/game/machinery/vending.dm @@ -61,7 +61,8 @@ /obj/item/clothing/under/corset = 3, /obj/item/clothing/under/jabroni = 3 ) - contraband = list(/obj/item/restraints/handcuffs/fake/kinky = 5, + contraband = list( + /obj/item/restraints/handcuffs/fake/kinky = 5, /obj/item/clothing/neck/petcollar = 5, /obj/item/clothing/under/mankini = 1, /obj/item/dildo/flared/huge = 3,