From 68606b588bd34dfdf3fc45e709b5ce43d80c2d37 Mon Sep 17 00:00:00 2001 From: TheToaster98 <51209769+TheToaster98@users.noreply.github.com> Date: Tue, 1 Jul 2025 19:30:33 +0200 Subject: [PATCH] Hotfix for lights blowing up (#17941) Co-authored-by: VM_USER --- code/modules/power/lighting.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index 1c4f0c4078a..febe854c48d 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -710,7 +710,7 @@ var/global/list/light_type_cache = list() return FALSE if(!has_emergency_power(pwr)) return FALSE - if(cell.charge > 300) //it's meant to handle 120 W, ya doofus + if(cell.charge > 750) //it's meant to handle 120 W, ya doofus. Not Anymore!! visible_message(span_warning("[src] short-circuits from too powerful of a power cell!")) status = LIGHT_BURNED installed_light.status = status