mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Span classes.
This commit is contained in:
@@ -1170,7 +1170,7 @@
|
|||||||
return ..()
|
return ..()
|
||||||
var/turf/T = src.loc
|
var/turf/T = src.loc
|
||||||
if (level==1 && isturf(T) && T.intact)
|
if (level==1 && isturf(T) && T.intact)
|
||||||
user << "\red You must remove the plating first."
|
user << "<span class='warning'>You must remove the plating first.</span>"
|
||||||
return 1
|
return 1
|
||||||
var/datum/gas_mixture/int_air = return_air()
|
var/datum/gas_mixture/int_air = return_air()
|
||||||
var/datum/gas_mixture/env_air = loc.return_air()
|
var/datum/gas_mixture/env_air = loc.return_air()
|
||||||
@@ -1189,14 +1189,14 @@
|
|||||||
env_air.add(transit) //put it in the air
|
env_air.add(transit) //put it in the air
|
||||||
del(transit) //remove the carrier
|
del(transit) //remove the carrier
|
||||||
else
|
else
|
||||||
user << "\red You cannot unwrench this [src], it too exerted due to internal pressure."
|
user << "<span class='warning'>You cannot unwrench this [src], it too exerted due to internal pressure.</span>"
|
||||||
return 1
|
return 1
|
||||||
playsound(get_turf(src), 'sound/items/Ratchet.ogg', 50, 1)
|
playsound(get_turf(src), 'sound/items/Ratchet.ogg', 50, 1)
|
||||||
user << "\blue You begin to unfasten \the [src]..."
|
user << "<span class='notice'>You begin to unfasten \the [src]...</span>"
|
||||||
if (do_after(user, 40))
|
if (do_after(user, 40))
|
||||||
user.visible_message( \
|
user.visible_message( \
|
||||||
"[user] unfastens \the [src].", \
|
"[user] unfastens \the [src].", \
|
||||||
"\blue You have unfastened \the [src].", \
|
"<span class='notice'>You have unfastened \the [src].</span>", \
|
||||||
"You hear a ratchet.")
|
"You hear a ratchet.")
|
||||||
new /obj/item/pipe(loc, make_from=src)
|
new /obj/item/pipe(loc, make_from=src)
|
||||||
for (var/obj/machinery/meter/meter in T)
|
for (var/obj/machinery/meter/meter in T)
|
||||||
|
|||||||
Reference in New Issue
Block a user