Skip to content

Commit

Permalink
D'oh
Browse files Browse the repository at this point in the history
  • Loading branch information
Comicao1 authored and BongaTheProto committed Feb 23, 2023
1 parent 1e8c53e commit fe840e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions code/modules/arousal/arousal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,6 @@
to_chat(src, span_userlove("You climax [(Lgen) ? "in [L]'s [Lgen.name]" : "with [L]"], your [G.name] spilling nothing."))
to_chat(L, span_userlove("[src] climaxes [(Lgen) ? "in your [Lgen.name]" : "with you"], [p_their()] [G.name] spilling nothing!"))
//SEND_SIGNAL(L, COMSIG_ADD_MOOD_EVENT, "orgasm", /datum/mood_event/orgasm) //Sandstorm edit
if(iswendigo(L))
var/mob/living/carbon/wendigo/W = L
if(L.pulling == src)
L.slaves |= src
to_chat(src, "<font color='red'> You are now [W]'s slave! Serve your master properly! </font>")
do_climax(fluid_source, spillage ? loc : L, G, spillage,, Lgen)
//L.receive_climax(src, Lgen, G, spillage)

Expand Down
5 changes: 5 additions & 0 deletions modular_splurt/code/modules/arousal/arousal.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
/mob/living/carbon/human/mob_climax_partner(obj/item/organ/genital/G, mob/living/L, spillage, mb_time, obj/item/organ/genital/Lgen, forced = FALSE)
. = ..()
L.receive_climax(src, Lgen, G, spillage, forced = forced)
if(iswendigo(L))
var/mob/living/carbon/wendigo/W = L
if(W.pulling == src)
W.slaves |= src
to_chat(src, "<font color='red'> You are now [W]'s slave! Serve your master properly! </font>")

/mob/living/proc/receive_climax(mob/living/partner, obj/item/organ/genital/receiver, obj/item/organ/genital/source, spill, forced)
//gregnancy...
Expand Down

0 comments on commit fe840e5

Please sign in to comment.