From bbee556d3eb53f46305b158a4cdb4ca1ac762b1a Mon Sep 17 00:00:00 2001 From: quotefox Date: Tue, 20 Jul 2021 09:24:35 +0100 Subject: [PATCH] allow equipment removal on new genital. --- hyperstation/code/modules/arousal/arousalhud.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hyperstation/code/modules/arousal/arousalhud.dm b/hyperstation/code/modules/arousal/arousalhud.dm index 8f5b61f5..cf903eb7 100644 --- a/hyperstation/code/modules/arousal/arousalhud.dm +++ b/hyperstation/code/modules/arousal/arousalhud.dm @@ -238,6 +238,13 @@ usr.put_in_hands(I) O.equipment = null + if(href_list["removeequipmentanus"]) + var/obj/item/organ/genital/anus/O = usr.getorganslot("anus") + var/obj/item/I = O.equipment + usr.put_in_hands(I) + O.equipment = null + + if(href_list["omenu"]) usr << browse(null, "window=arousal") //closes the window H.mob_climax()