whoops forgot permaboner

This commit is contained in:
Putnam
2020-01-06 01:14:00 -08:00
parent 218e701fa9
commit 32043a9062
10 changed files with 46 additions and 21 deletions
@@ -969,9 +969,10 @@
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*G.sensitivity))
G.aroused_state = TRUE
G.set_aroused_state(TRUE)
G.update_appearance()
to_chat(M, "<span class='userlove'>You feel like playing with your [G.name]!")
if(G.aroused_state)
to_chat(M, "<span class='userlove'>You feel like playing with your [G.name]!</span>")
..()
@@ -2284,7 +2284,8 @@
var/mob/living/carbon/human/H = M
for(var/obj/item/organ/genital/G in H.internal_organs)
if(!G.aroused_state && prob(2*G.sensitivity))
G.aroused_state = TRUE
G.set_aroused_state(TRUE)
G.update_appearance()
to_chat(M, "<span class='userlove'>You feel like playing with your [G.name]!")
if(G.aroused_state)
to_chat(M, "<span class='userlove'>You feel like playing with your [G.name]!</span>")
..()