mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-22 12:16:40 +01:00
In total: - Adds span defines for `reallybig hypnophrase`, `big warning`, `header` - Fixes a missing apostrophe for hypno stare - Makes a special exception for cuddling.dm, which uses an irregular span - Puts the spans file back
11 lines
390 B
Plaintext
11 lines
390 B
Plaintext
/obj/item/implantcase/emag_act(mob/user)
|
|
. = ..()
|
|
if(istype(imp, /obj/item/implant/genital_fluid))
|
|
var/obj/item/implant/genital_fluid/I = imp
|
|
if(I.obj_flags & EMAGGED)
|
|
to_chat(user, span_warning("[src] has no functional safeties to emag."))
|
|
return
|
|
to_chat(user, span_notice("You short out [src]'s safeties."))
|
|
name = "implant case - 'Genital Fluid (Hacked)'"
|
|
I.emag_act()
|