diff --git a/hyperstation/code/modules/arousal/arousalhud.dm b/hyperstation/code/modules/arousal/arousalhud.dm
index cb0c6104..90d057a4 100644
--- a/hyperstation/code/modules/arousal/arousalhud.dm
+++ b/hyperstation/code/modules/arousal/arousalhud.dm
@@ -61,8 +61,11 @@
if(P.sounding == 1)
dat += "Remove Sounding Rod
"
+ //bottom options
dat += "Refresh"
- dat += "Old Menu
"
+ dat += "Old Menu"
+ dat += "Toggle Undergarments "
+ dat += "
"
var/datum/browser/popup = new(user, "arousal", "Arousal Panel")
popup.set_content(dat)
@@ -170,8 +173,12 @@
H.menuremovesounding()
if(href_list["omenu"])
- H.mob_climax()
usr << browse(null, "window=arousal") //closes the window
+ H.mob_climax()
+ return
+
+ if(href_list["underwear"])
+ H.underwear_toggle()
return
src.ui_interact(usr)