whoops forgot to use sensitivity
This commit is contained in:
@@ -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]!")
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user