Files
Darius ad0239b5de Replace all modular HTML spans with defines spans
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
2023-01-16 04:05:27 -05:00

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()