mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-16 09:34:52 +01:00
refactors most spans
This commit is contained in:
@@ -544,10 +544,10 @@ steam.start() -- spawns the effect
|
||||
s.start()
|
||||
|
||||
for(var/mob/M in viewers(5, location))
|
||||
to_chat(M, "<span class='warning'>The solution violently explodes.</span>")
|
||||
to_chat(M, span_warning("The solution violently explodes."))
|
||||
for(var/mob/M in viewers(1, location))
|
||||
if (prob (50 * amount))
|
||||
to_chat(M, "<span class='warning'>The explosion knocks you down.</span>")
|
||||
to_chat(M, span_warning("The explosion knocks you down."))
|
||||
M.Weaken(rand(1,5))
|
||||
return
|
||||
else
|
||||
@@ -570,7 +570,7 @@ steam.start() -- spawns the effect
|
||||
flash = (amount/4) * flashing_factor
|
||||
|
||||
for(var/mob/M in viewers(8, location))
|
||||
to_chat(M, "<span class='warning'>The solution violently explodes.</span>")
|
||||
to_chat(M, span_warning("The solution violently explodes."))
|
||||
|
||||
explosion(
|
||||
location,
|
||||
|
||||
Reference in New Issue
Block a user