diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 2035b67b5e..8e497743e0 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -394,7 +394,7 @@ desc = "You want penis enlargement pills?" /obj/item/storage/pill_bottle/penis_enlargement/PopulateContents() - for(var/i in 1 to 7) + for(var/i in 1 to 10) new /obj/item/reagent_containers/pill/penis_enlargement(src) /obj/item/storage/pill_bottle/breast_enlargement @@ -402,7 +402,7 @@ desc = "Made by Fermichem - They have a woman with breasts larger than she is on them. The warming states not to take more than 10u at a time." /obj/item/storage/pill_bottle/breast_enlargement/PopulateContents() - for(var/i in 1 to 7) + for(var/i in 1 to 10) new /obj/item/reagent_containers/pill/breast_enlargement(src) /obj/item/storage/pill_bottle/neurine diff --git a/code/modules/vending/kinkmate.dm b/code/modules/vending/kinkmate.dm index 28e5a950ad..6d8eea1782 100644 --- a/code/modules/vending/kinkmate.dm +++ b/code/modules/vending/kinkmate.dm @@ -29,9 +29,9 @@ /obj/item/clothing/under/misc/poly_tanktop/female = 3, /obj/item/autosurgeon/penis = 3, /obj/item/autosurgeon/testicles = 3, - /obj/item/storage/pill_bottle/penis_enlargement = 5, - /obj/item/storage/pill_bottle/breast_enlargement = 5, - /obj/item/reagent_containers/glass/bottle/crocin = 5, + /obj/item/storage/pill_bottle/penis_enlargement = 10, + /obj/item/storage/pill_bottle/breast_enlargement = 10, + /obj/item/reagent_containers/glass/bottle/crocin = 10, /obj/item/reagent_containers/glass/bottle/camphor = 5, /obj/item/storage/daki = 4 )