Tweaked extra productive genitals, amounts had a different baseline old code vs new code, causing climaxing to not spill onto floor

This commit is contained in:
AlManiak
2024-10-25 15:36:10 +02:00
parent 7a53d88f67
commit 800f0d35a7
2 changed files with 4 additions and 3 deletions
+3 -3
View File
@@ -15,14 +15,14 @@
if(M?.getorganslot("testicles"))
var/obj/item/organ/genital/testicles/T = M?.getorganslot("testicles")
T?.fluid_mult = 1.5 //Base is 1
T?.fluid_max_volume = 5
T?.fluid_max_volume = 20
/datum/quirk/cum_plus/remove()
var/mob/living/carbon/M = quirk_holder
if(quirk_holder.getorganslot("testicles"))
var/obj/item/organ/genital/testicles/T = M?.getorganslot("testicles")
T?.fluid_mult = 1 //Base is 1
T?.fluid_max_volume = 3 //Base is 3
T?.fluid_max_volume = 10 //Base is 3
/datum/quirk/cum_plus/on_process()
var/mob/living/carbon/M = quirk_holder //If you get balls later, then this will still proc
@@ -30,4 +30,4 @@
var/obj/item/organ/genital/testicles/T = M?.getorganslot("testicles")
if(T?.fluid_max_volume <= 5 || T?.fluid_mult <= 0.2) //INVALID EXPRESSION?
T?.fluid_mult = 1.5 //Base is 0.133
T?.fluid_max_volume = 5
T?.fluid_max_volume = 20