diff --git a/GainStation13/code/modules/resize/height_limits.dm b/GainStation13/code/modules/resize/height_limits.dm index db9bdba405..fc5b4860c1 100644 --- a/GainStation13/code/modules/resize/height_limits.dm +++ b/GainStation13/code/modules/resize/height_limits.dm @@ -17,7 +17,7 @@ GLOBAL_LIST_EMPTY(see_toggle_smallsprite) //When switched off, remove from the list and remove smallsprites for the user's hud. /client/verb/toggle_others_giant() set name = "Toggle Others' Giant Sprite" - set category = "Preferences" + set category = "Preferences.GS13" set desc = "Change display settings to and from displaying others' giant sprites." if(!mob.see_resized_others) mob.see_resized_others = !mob.see_resized_others diff --git a/hyperstation/code/modules/arousal/arousalhud.dm b/hyperstation/code/modules/arousal/arousalhud.dm index f4df481b63..b6ebec95c3 100644 --- a/hyperstation/code/modules/arousal/arousalhud.dm +++ b/hyperstation/code/modules/arousal/arousalhud.dm @@ -77,6 +77,7 @@ dat += {"
"}//Newline for the objects //bottom options + dat += "Toggle others' giant sprites" //GS13 Edit dat += "Refresh" dat += "Old Menu" dat += "Toggle Undergarments " @@ -281,6 +282,11 @@ H.underwear_toggle() return + if(href_list["toggle_giant"]) + if(H && H.client) + H.client.toggle_others_giant() + return + src.ui_interact(usr)