From 61e74f792149a1e8a0131aa0d7dc1b9c52a68a6b Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Wed, 8 Jun 2022 19:28:27 -0400 Subject: [PATCH] more balancing --- hyperstation/code/obj/condom.dm | 4 ++-- hyperstation/code/obj/sounding.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hyperstation/code/obj/condom.dm b/hyperstation/code/obj/condom.dm index bdb8ff3b6..159bc7bdd 100644 --- a/hyperstation/code/obj/condom.dm +++ b/hyperstation/code/obj/condom.dm @@ -7,9 +7,9 @@ icon = 'hyperstation/icons/obj/condom.dmi' throwforce = 0 icon_state = "b_condom_wrapped" - var/unwrapped = 0 + var/unwrapped = 0 w_class = WEIGHT_CLASS_TINY - price = PRICE_LOW * 1.25 + price = PRICE_LOW * 0.5 obj/item/condom/Initialize() create_reagents(300, DRAWABLE|NO_REACT) diff --git a/hyperstation/code/obj/sounding.dm b/hyperstation/code/obj/sounding.dm index 685d658d5..e6f07cdbf 100644 --- a/hyperstation/code/obj/sounding.dm +++ b/hyperstation/code/obj/sounding.dm @@ -4,9 +4,9 @@ icon = 'hyperstation/icons/obj/sounding.dmi' throwforce = 0 icon_state = "sounding_wrapped" - var/unwrapped = 0 + var/unwrapped = 0 w_class = WEIGHT_CLASS_TINY - price = PRICE_LOW * 1.25 + price = PRICE_LOW /obj/item/sounding/attack_self(mob/user) if(!istype(user))