From 7635120f94799b27775a2cb058f9c0efd2247e52 Mon Sep 17 00:00:00 2001
From: QuoteFox <49098813+quotefox@users.noreply.github.com>
Date: Wed, 5 May 2021 23:09:09 +0100
Subject: [PATCH] fleshlight bug fix
---
hyperstation/code/obj/fleshlight.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/hyperstation/code/obj/fleshlight.dm b/hyperstation/code/obj/fleshlight.dm
index cd22a100..a2fc1f53 100644
--- a/hyperstation/code/obj/fleshlight.dm
+++ b/hyperstation/code/obj/fleshlight.dm
@@ -162,6 +162,9 @@
C.adjustArousalLoss(20)
M.adjustArousalLoss(20)
M.do_jitter_animation() //make your partner shake too!
+ if (C.getArousalLoss() >= 100 && ishuman(C) && C.has_dna())
+ var/mob/living/carbon/human/O = C
+ O.mob_climax_partner(P, M, FALSE, TRUE, FALSE, TRUE) //climax with their partner remotely, and impreg because people keep asking!
if(option == "Lick")
to_chat(M, "You feel a tongue lick you through the portal against your vagina.")
M.adjustArousalLoss(10)
@@ -169,9 +172,6 @@
to_chat(M, "You feel someone touching your vagina through the portal.")
M.adjustArousalLoss(5)
- if (C.getArousalLoss() >= 100 && ishuman(C) && C.has_dna())
- var/mob/living/carbon/human/O = C
- O.mob_climax_partner(P, M, FALSE, TRUE, FALSE, TRUE) //climax with their partner remotely, and impreg because people keep asking!
return
..()