From a0473dc9b562565c2bcba54ac180e117136f708a Mon Sep 17 00:00:00 2001 From: Paxilmaniac <82386923+Paxilmaniac@users.noreply.github.com> Date: Mon, 13 Jan 2025 10:49:23 -0600 Subject: [PATCH] makes the plasma visor overlay a lighter color and also actually work for modsuits (#88751) ## About The Pull Request the module doesn't actually show the visor thanks to the fact that the module is not actually active at any point, which the visor attempts to check for also the color of purple was like WAY too dark it was practically black on every modsuit ## Why It's Good For The Game it'd be cool if it actually worked and you could actually see it ## Changelog :cl: fix: fixes plasma stabilizer module not showing a visor on modsuits fix: makes the plasma stabilizer module actually visible fix: makes rave module grey by default as it was meant to be /:cl: --- code/modules/mod/modules/modules_general.dm | 4 +--- code/modules/mod/modules/modules_maint.dm | 2 -- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/code/modules/mod/modules/modules_general.dm b/code/modules/mod/modules/modules_general.dm index a766e3f6e4d..6cb96b7d99c 100644 --- a/code/modules/mod/modules/modules_general.dm +++ b/code/modules/mod/modules/modules_general.dm @@ -667,11 +667,9 @@ required_slots = list(ITEM_SLOT_HEAD) /obj/item/mod/module/plasma_stabilizer/generate_worn_overlay(mutable_appearance/standing) - if (!active) - return list() var/mutable_appearance/visor_overlay = mod.get_visor_overlay(standing) visor_overlay.appearance_flags |= RESET_COLOR - visor_overlay.color = COLOR_VOID_PURPLE + visor_overlay.color = COLOR_VIOLET return list(visor_overlay) /obj/item/mod/module/plasma_stabilizer/on_equip() diff --git a/code/modules/mod/modules/modules_maint.dm b/code/modules/mod/modules/modules_maint.dm index ba0ad39b18d..afc472b7604 100644 --- a/code/modules/mod/modules/modules_maint.dm +++ b/code/modules/mod/modules/modules_maint.dm @@ -130,8 +130,6 @@ SEND_SOUND(mod.wearer, sound('sound/machines/terminal/terminal_off.ogg', volume = 50, channel = CHANNEL_JUKEBOX)) /obj/item/mod/module/visor/rave/generate_worn_overlay(mutable_appearance/standing) - if (!active) - return list() var/mutable_appearance/visor_overlay = mod.get_visor_overlay(standing) visor_overlay.appearance_flags |= RESET_COLOR if (!isnull(music_player.active_song_sound))