Skip to content

Commit

Permalink
Update singularity.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
silicons committed Jun 30, 2023
1 parent 89dd0d6 commit 8b8e114
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/modules/power/singularity/singularity.dm
Original file line number Diff line number Diff line change
Expand Up @@ -431,11 +431,12 @@ GLOBAL_LIST_BOILERPLATE(all_singularities, /obj/singularity)
to_chat(M, "<span class=\"danger\">You hear an uneartly ringing, then what sounds like a shrilling kettle as you are washed with a wave of heat.</span>")
to_chat(M, "<span class=\"danger\">You don't even have a moment to react as you are reduced to ashes by the intense radiation.</span>")
M.dust()
radiation_pulse(src, energy, RAD_FALLOFF_ENGINE_SINGULARITY)
radiation_pulse(src, energy * 10, RAD_FALLOFF_ENGINE_SINGULARITY)

/obj/singularity/proc/pulse()
//! if you hit super you eat shit from 50k :^)
radiation_pulse(src, clamp(energy, 0, 50000))
// stage 3 is around 10,000 at epicenter
radiation_pulse(src, clamp(energy * 10, 0, 50000))

/obj/singularity/proc/on_capture()
chained = 1
Expand Down

0 comments on commit 8b8e114

Please sign in to comment.