whoops forgot to use sensitivity

This commit is contained in:
Putnam
2020-01-05 19:29:23 -08:00
parent fba7a8abb0
commit e7684f5df7
3 changed files with 3 additions and 3 deletions
@@ -968,7 +968,7 @@
to_chat(M, "<span class = 'notice'>[pick("Headpats feel nice.", "Backrubs would be nice.", "Mew")]</span>")
if(M.client?.prefs.arousable && !(M.client?.prefs.cit_toggles & NO_APHRO) && prob(5))
for(var/obj/item/organ/genital/G in M.internal_organs)
if(!G.aroused_state && prob(5))
if(!G.aroused_state && prob(5*G.sensitivity))
G.aroused_state = TRUE
to_chat(M, "<span class='userlove'>You feel like playing with your [G.name]!")
@@ -2283,7 +2283,7 @@
if(M.client?.prefs.arousable && !(M.client?.prefs.cit_toggles & NO_APHRO && ishuman(M)))
var/mob/living/carbon/human/H = M
for(var/obj/item/organ/genital/G in H.internal_organs)
if(!G.aroused_state && prob(2))
if(!G.aroused_state && prob(2*G.sensitivity))
G.aroused_state = TRUE
to_chat(M, "<span class='userlove'>You feel like playing with your [G.name]!")
..()