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))