mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 14:08:44 +01:00
refactors most spans
This commit is contained in:
@@ -119,7 +119,7 @@
|
||||
var/list/seen = viewers(4, T)
|
||||
for(var/mob/M in seen)
|
||||
if(M.client)
|
||||
M.show_message("<span class='notice'>[icon2html(container,M.client)] [mix_message]</span>", 1)
|
||||
M.show_message(span_notice("[icon2html(container,M.client)] [mix_message]"), 1)
|
||||
playsound(T, reaction_sound, 80, 1)
|
||||
|
||||
//obtains any special data that will be provided to the reaction products
|
||||
|
||||
@@ -846,7 +846,7 @@
|
||||
var/location = get_turf(holder.my_atom)
|
||||
|
||||
for(var/mob/M in viewers(5, location))
|
||||
to_chat(M, "<span class='warning'>The solution spews out foam!</span>")
|
||||
to_chat(M, span_warning("The solution spews out foam!"))
|
||||
|
||||
var/datum/effect/effect/system/foam_spread/s = new()
|
||||
s.set_up(created_volume, location, holder, 0)
|
||||
@@ -868,7 +868,7 @@
|
||||
var/location = get_turf(holder.my_atom)
|
||||
|
||||
for(var/mob/M in viewers(5, location))
|
||||
to_chat(M, "<span class='warning'>The solution spews out a metalic foam!</span>")
|
||||
to_chat(M, span_warning("The solution spews out a metalic foam!"))
|
||||
|
||||
var/datum/effect/effect/system/foam_spread/s = new()
|
||||
s.set_up(created_volume, location, holder, 1)
|
||||
@@ -886,7 +886,7 @@
|
||||
var/location = get_turf(holder.my_atom)
|
||||
|
||||
for(var/mob/M in viewers(5, location))
|
||||
to_chat(M, "<span class='warning'>The solution spews out a metalic foam!</span>")
|
||||
to_chat(M, span_warning("The solution spews out a metalic foam!"))
|
||||
|
||||
var/datum/effect/effect/system/foam_spread/s = new()
|
||||
s.set_up(created_volume, location, holder, 2)
|
||||
|
||||
Reference in New Issue
Block a user