diff --git a/code/_onclick/hud/generic_dextrous.dm b/code/_onclick/hud/generic_dextrous.dm index 925dfd02..5dcbe1c3 100644 --- a/code/_onclick/hud/generic_dextrous.dm +++ b/code/_onclick/hud/generic_dextrous.dm @@ -15,14 +15,6 @@ //Rogue Slots ///////////////////////////////// - grain = new /atom/movable/screen/grain - grain.hud = src - static_inventory += grain - - scannies = new /atom/movable/screen/scannies - scannies.hud = src - static_inventory += scannies - action_intent = new /atom/movable/screen/act_intent/rogintent action_intent.hud = src action_intent.screen_loc = rogueui_intents diff --git a/code/_onclick/hud/ghost.dm b/code/_onclick/hud/ghost.dm index 42be1931..084ad2dc 100644 --- a/code/_onclick/hud/ghost.dm +++ b/code/_onclick/hud/ghost.dm @@ -129,16 +129,6 @@ using.hud = src static_inventory += using - using = new /atom/movable/screen/grain - using.hud = src - static_inventory += using - - scannies = new /atom/movable/screen/scannies - scannies.hud = src - static_inventory += scannies - if(owner.client?.prefs?.crt == TRUE) - scannies.alpha = 70 - using = new /atom/movable/screen/ghost/orbit/rogue() using.hud = src static_inventory += using @@ -194,16 +184,6 @@ using.hud = src static_inventory += using - using = new /atom/movable/screen/grain - using.hud = src - static_inventory += using - - scannies = new /atom/movable/screen/scannies - scannies.hud = src - static_inventory += scannies - if(owner.client?.prefs?.crt == TRUE) - scannies.alpha = 70 - /datum/hud/eye/show_hud(version = 0, mob/viewmob) // don't show this HUD if observing; show the HUD of the observee var/mob/dead/observer/O = mymob @@ -227,13 +207,3 @@ using = new /atom/movable/screen/backhudl/obs() using.hud = src static_inventory += using - - using = new /atom/movable/screen/grain - using.hud = src - static_inventory += using - - scannies = new /atom/movable/screen/scannies - scannies.hud = src - static_inventory += scannies - if(owner.client?.prefs?.crt == TRUE) - scannies.alpha = 70 diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index 12dd751b..be51f0dd 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -30,8 +30,6 @@ GLOBAL_LIST_INIT(available_ui_styles, sortList(list( var/atom/movable/screen/devil/soul_counter/devilsouldisplay var/atom/movable/screen/act_intent/action_intent - var/atom/movable/screen/grain - var/atom/movable/screen/scannies var/atom/movable/screen/act_intent/rogintent/magic/spell_intent var/atom/movable/screen/zone_sel/zone_select var/atom/movable/screen/pull_icon @@ -101,14 +99,6 @@ GLOBAL_LIST_INIT(available_ui_styles, sortList(list( plane_masters["[instance.plane]"] = instance instance.backdrop(mymob) -/datum/hud/new_player/New(mob/owner) - ..() - scannies = new /atom/movable/screen/scannies - scannies.hud = src - static_inventory += scannies - if(owner.client?.prefs?.crt == TRUE) - scannies.alpha = 70 - /datum/hud/Destroy() if(mymob.hud_used == src) mymob.hud_used = null diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index da263d66..c58fea16 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -96,10 +96,6 @@ //Rogue Slots ///////////////////////////////// - grain = new /atom/movable/screen/grain - grain.hud = src - static_inventory += grain - reads = new /atom/movable/screen/read reads.hud = src @@ -113,12 +109,6 @@ static_inventory += textl reads.textleft = textl - scannies = new /atom/movable/screen/scannies - scannies.hud = src - static_inventory += scannies - if(owner.client?.prefs?.crt == TRUE) - scannies.alpha = 70 - action_intent = new /atom/movable/screen/act_intent/rogintent action_intent.hud = src action_intent.screen_loc = rogueui_intents diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 9f04cdd8..62950745 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -1901,30 +1901,6 @@ screen_loc = rogueui_fat layer = HUD_LAYER+0.1 -/atom/movable/screen/grain - icon = 'icons/grain.dmi' - icon_state = "grain" - name = "" - screen_loc = "1,1" - mouse_opacity = 0 - alpha = 70 -// layer = 20.5 -// plane = 20 - layer = 13 - plane = 0 - blend_mode = 4 - -/atom/movable/screen/scannies - icon = 'icons/mob/roguehudback2.dmi' - icon_state = "crt" - name = "" - screen_loc = ui_backhudl - mouse_opacity = 0 - alpha = 0 - layer = 24 - plane = 24 - blend_mode = BLEND_MULTIPLY - /atom/movable/screen/char_preview name = "Me." icon_state = "" diff --git a/icons/grain.dmi b/icons/grain.dmi deleted file mode 100644 index d9b1faf5..00000000 Binary files a/icons/grain.dmi and /dev/null differ diff --git a/interface/interface.dm b/interface/interface.dm index 67789682..a46b41aa 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -170,26 +170,6 @@ Hotkey-Mode: (hotkey-mode must be on) to_chat(src, "Anti-aliased... OK") winset(src, "mapwindow.map", "zoom-mode=normal") -/client/verb/crtmode() - set category = "OOC" - set name = "ToggleCRT" - if(!prefs) - return - if(prefs.crt == TRUE) - winset(src, "mapwindow.map", "zoom-mode=normal") - prefs.crt = FALSE - prefs.save_preferences() - to_chat(src, "CRT... OFF") - for(var/atom/movable/screen/scannies/S in screen) - S.alpha = 0 - else - winset(src, "mapwindow.map", "zoom-mode=blur") - prefs.crt = TRUE - prefs.save_preferences() - to_chat(src, "CRT... ON") - for(var/atom/movable/screen/scannies/S in screen) - S.alpha = 70 - /client/verb/triggercommend() set category = "OOC" set name = "Commend Someone"