From 49f39f27db7d9c20e11884c51fc6201b4ae3dfb4 Mon Sep 17 00:00:00 2001 From: QuoteFox <49098813+quotefox@users.noreply.github.com> Date: Sat, 2 Jan 2021 16:40:06 +0000 Subject: [PATCH] Fix just fucking work, ive had no sleep. My wife took the kids. --- hyperstation/code/modules/arousal/arousalhud.dm | 10 +++++----- modular_citadel/code/modules/arousal/arousal.dm | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hyperstation/code/modules/arousal/arousalhud.dm b/hyperstation/code/modules/arousal/arousalhud.dm index 50b3c9c9..b35ac109 100644 --- a/hyperstation/code/modules/arousal/arousalhud.dm +++ b/hyperstation/code/modules/arousal/arousalhud.dm @@ -55,11 +55,11 @@ dat += "(Climax inside another person, knocking them up.)
" - - if(P.condom == 1) - dat += "Remove Condom
" - if(P.sounding == 1) - dat += "Remove Sounding Rod
" + if(P) // They have a dick (make sure to check or this will break everything) + if(P.condom == 1) + dat += "Remove Condom
" + if(P.sounding == 1) + dat += "Remove Sounding Rod
" dat += {"
"}//Newline for the objects //bottom options dat += "Refresh" diff --git a/modular_citadel/code/modules/arousal/arousal.dm b/modular_citadel/code/modules/arousal/arousal.dm index b5a01bcf..1334af14 100644 --- a/modular_citadel/code/modules/arousal/arousal.dm +++ b/modular_citadel/code/modules/arousal/arousal.dm @@ -212,7 +212,7 @@ return var/mob/living/M = usr if(M.canbearoused) - src.ui_interact(usr) + ui_interact(usr) /mob/living/proc/mob_climax()//This is just so I can test this shit without being forced to add actual content to get rid of arousal. Will be a very basic proc for a while. set name = "Masturbate"