diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index 70de6cd614..e14ee398e4 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -319,15 +319,12 @@ return ..() /* Alt click - Unused except for AI + Used as an alternate way to interact with things. */ /mob/proc/AltClickOn(atom/A) + if(!A.AltClick(src)) altclick_listed_turf(A) - . = SEND_SIGNAL(src, COMSIG_MOB_ALTCLICKON, A) - if(. & COMSIG_MOB_CANCEL_CLICKON) - return - A.AltClick(src) /mob/proc/altclick_listed_turf(atom/A) var/turf/T = get_turf(A) diff --git a/code/modules/arousal/arousal.dm b/code/modules/arousal/arousal.dm index c9b2690784..249c899f07 100644 --- a/code/modules/arousal/arousal.dm +++ b/code/modules/arousal/arousal.dm @@ -11,7 +11,7 @@ var/hidden_socks = FALSE //Mob procs -/mob/living/carbon/human/proc/underwear_toggle() +/mob/living/carbon/human/verb/underwear_toggle() set name = "Toggle undergarments" set category = "IC" diff --git a/html/statbrowser.html b/html/statbrowser.html index db58245786..4d202bd177 100644 --- a/html/statbrowser.html +++ b/html/statbrowser.html @@ -832,13 +832,13 @@ function draw_verbs(cat){ } function set_theme(which) { - if (which == "light") { - document.body.className = ""; - set_style_sheet("browserOutput_white"); - } else if (which == "dark") { - document.body.className = "dark"; - set_style_sheet("browserOutput"); - } + if (which == "light") { + document.body.className = ""; + set_style_sheet("browserOutput_white"); + } else if (which == "dark" || which == "default") { + document.body.className = "dark"; + set_style_sheet("browserOutput"); + } } function set_style_sheet(sheet) {