Files
Bubberstation/code/game/objects/items/devices/ocd.dm
SkyratBot c088c0244f [MIRROR] Makes the occupational corruption device less cryptic (#7421)
* makes the occupational corruption device less cryptic (#60685)

Co-authored-by: Thunder12345 <stewart@ critar.demon.co.uk>

* Makes the occupational corruption device less cryptic

Co-authored-by: Thunder12345 <Thunder12345@users.noreply.github.com>
Co-authored-by: Thunder12345 <stewart@ critar.demon.co.uk>
2021-08-06 05:10:19 +01:00

12 lines
476 B
Plaintext

/obj/item/devices/bureaucratic_error_remote
name = "Occupational Corruption Device"
desc = "When you need to make the lives of new-hires that much more confusing, think OCD."
icon = 'icons/obj/device.dmi'
icon_state = "gangtool-white"
/obj/item/devices/bureaucratic_error_remote/attack_self(mob/user)
var/datum/round_event/bureaucratic_error/event = new()
event.start()
deadchat_broadcast(span_bold("An Occupational Corruption Device has been activated!"))
qdel(src)