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

Commit 38bf740

Browse files
fix
1 parent 9930586 commit 38bf740

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

code/modules/power/supermatter/supermatter.dm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,6 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_crystal)
912912
var/ballcount = round(10-(support_integrity/10), 1) // Cause more radballs to be spawned
913913
for(var/i = 1 to ballcount)
914914
fire_nuclear_particle()
915-
supermatter_zap(src, 7, 2000+power)
916915
if(support_integrity<=20)
917916
if(!antinoblium_safety())
918917
bypass_containment = TRUE
@@ -921,7 +920,7 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_crystal)
921920
surging = 100000
922921
if(istype(T, /turf/open/space) || T.return_air().total_moles() < MOLE_SPACE_THRESHOLD)
923922
damage += DAMAGE_HARDCAP * explosion_point //Can't cheat by spacing the crystal to buy time, it will just delaminate faster
924-
if(prob(2))
923+
if(prob(2) && !antinoblium_safety())
925924
empulse(src, 10-support_integrity) //EMPs must always be spewing every so often to ensure that containment is guaranteed to fail.
926925
if(prob(30))
927926
supermatter_zap(src, 7, 2000+power)

0 commit comments

Comments
 (0)