From e9cb38d2cb34dc95298569c4058232a92ced0365 Mon Sep 17 00:00:00 2001 From: QuoteFox <49098813+quotefox@users.noreply.github.com> Date: Thu, 24 Dec 2020 19:12:01 +0000 Subject: [PATCH] fix fix --- modular_citadel/code/modules/arousal/arousal.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/arousal/arousal.dm b/modular_citadel/code/modules/arousal/arousal.dm index db9f4c91..33076b56 100644 --- a/modular_citadel/code/modules/arousal/arousal.dm +++ b/modular_citadel/code/modules/arousal/arousal.dm @@ -343,7 +343,7 @@ if(do_after(src, mb_time, target = src) && in_range(src, L)) fluid_source.trans_to(L, total_fluids*G.fluid_transfer_factor) total_fluids -= total_fluids*G.fluid_transfer_factor - if(B.total_fluids > 80) // now thats a big cum! + if(total_fluids > 80) // now thats a big cum! var/mutable_appearance/cumoverlaylarge = mutable_appearance('hyperstation/icons/effects/cumoverlay.dmi') cumoverlaylarge.icon_state = "cum_large" L.add_overlay(cumoverlaylarge) @@ -354,7 +354,6 @@ "You orgasm over [L][cover ? ", drenching them":""], using your [G.name].", \ "You have climaxed over someone[cover ? ", coating them":""], using your [G.name].") SEND_SIGNAL(src, COMSIG_ADD_MOOD_EVENT, "orgasm", /datum/mood_event/orgasm) - var/mob/living/carbon/human/H = L var/mutable_appearance/cumoverlay = mutable_appearance('hyperstation/icons/effects/cumoverlay.dmi') cumoverlay.icon_state = "cum_normal" L.add_overlay(cumoverlay)