From cf8d8121c8ceea561f71d584158afe2998e18a36 Mon Sep 17 00:00:00 2001
From: Roxy <75404941+TealSeer@users.noreply.github.com>
Date: Sat, 28 Feb 2026 19:46:05 -0500
Subject: [PATCH] Add Emitter Emissives (#95270)
## About The Pull Request
Add an emissive overlay for the lights on emitters
## Why It's Good For The Game
cool
## Changelog
:cl:
image: emitters glow in the dark now
/:cl:
---
code/modules/power/singularity/emitter.dm | 1 +
1 file changed, 1 insertion(+)
diff --git a/code/modules/power/singularity/emitter.dm b/code/modules/power/singularity/emitter.dm
index 7bde7c5e829..be1eb91a918 100644
--- a/code/modules/power/singularity/emitter.dm
+++ b/code/modules/power/singularity/emitter.dm
@@ -157,6 +157,7 @@
var/mutable_appearance/overlay = mutable_appearance(icon, "emitter_overlay")
overlay.color = laser_color
. += overlay
+ . += emissive_appearance(icon, "emitter_overlay", src, alpha = src.alpha)
/obj/machinery/power/emitter/update_icon_state()
if(panel_open)