Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 26b1b16

Browse files
fix
1 parent e6a552e commit 26b1b16

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

code/modules/power/supermatter/supermatter.dm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,6 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_crystal)
388388
return FALSE
389389
if(!check_containment(get_turf(src), 5) || corruptor_attached)
390390
return FALSE
391-
for(var/obj/machinery/field/generator/gens in urange(5, src, 1))
392-
Beam(gens, icon_state = "lightning[rand(1,12)]", time = 5, maxdistance = INFINITY, beam_color="#fdd700")
393391
return TRUE
394392
return FALSE
395393

@@ -893,7 +891,8 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_crystal)
893891
support_integrity -= 1
894892
radiation_pulse(src, (100-support_integrity)*2, 4)
895893
if(prob(30))
896-
antinoblium_safety()
894+
for(var/obj/machinery/field/generator/gens in urange(5, src, 1))
895+
Beam(gens, icon_state = "lightning[rand(1,12)]", time = 5, maxdistance = INFINITY, beam_color="#fdd700")
897896
if(support_integrity<3)
898897
if(!antinoblium_safety())
899898
var/emp_power = round(explosion_power * (1+(1-(support_integrity/3))),1)

0 commit comments

Comments
 (0)