diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm index 33eee92a31..2fa012ae87 100644 --- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm @@ -970,6 +970,7 @@ for(var/obj/item/organ/genital/G in M.internal_organs) if(!G.aroused_state && prob(5*G.sensitivity)) G.aroused_state = TRUE + G.update_appearance() to_chat(M, "You feel like playing with your [G.name]!") ..() diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index b50f424a6c..dc39c433eb 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -2285,5 +2285,6 @@ for(var/obj/item/organ/genital/G in H.internal_organs) if(!G.aroused_state && prob(2*G.sensitivity)) G.aroused_state = TRUE + G.update_appearance() to_chat(M, "You feel like playing with your [G.name]!") ..() diff --git a/modular_citadel/code/modules/reagents/reagents/cit_reagents.dm b/modular_citadel/code/modules/reagents/reagents/cit_reagents.dm index a44075079e..50dee539e3 100644 --- a/modular_citadel/code/modules/reagents/reagents/cit_reagents.dm +++ b/modular_citadel/code/modules/reagents/reagents/cit_reagents.dm @@ -111,6 +111,7 @@ for(var/obj/item/organ/genital/G in H.internal_organs) if(!G.aroused_state && prob(current_cycle*G.sensitivity)) G.aroused_state = TRUE + G.update_appearance() to_chat(M, "You suddenly [G.arousal_verb]!") ..() @@ -145,6 +146,7 @@ for(var/obj/item/organ/genital/G in H.internal_organs) if(!G.aroused_state) G.aroused_state = TRUE + G.update_appearance() to_chat(M, "You suddenly [G.arousal_verb]!") ..() @@ -188,6 +190,7 @@ for(var/obj/item/organ/genital/G in H.internal_organs) if(G.aroused_state) G.aroused_state = FALSE + G.update_appearance() unboner = TRUE if(unboner) to_chat(M, "You no longer feel aroused.") @@ -211,6 +214,7 @@ for(var/obj/item/organ/genital/G in H.internal_organs) if(G.aroused_state) G.aroused_state = FALSE + G.update_appearance() unboner = TRUE if(unboner) to_chat(M, "You no longer feel aroused.")